svn commit: r359169 - in head/sys/cam: ctl scsi
Ed Maste
emaste at FreeBSD.org
Fri Mar 20 16:15:46 UTC 2020
Author: emaste
Date: Fri Mar 20 16:15:45 2020
New Revision: 359169
URL: https://svnweb.freebsd.org/changeset/base/359169
Log:
sys/cam: remove doubled ;s
Modified:
head/sys/cam/ctl/ctl.c
head/sys/cam/scsi/scsi_all.c
head/sys/cam/scsi/scsi_da.c
Modified: head/sys/cam/ctl/ctl.c
==============================================================================
--- head/sys/cam/ctl/ctl.c Fri Mar 20 16:02:45 2020 (r359168)
+++ head/sys/cam/ctl/ctl.c Fri Mar 20 16:15:45 2020 (r359169)
@@ -13265,7 +13265,7 @@ ctl_done_timer_wakeup(void *arg)
void
ctl_serseq_done(union ctl_io *io)
{
- struct ctl_lun *lun = CTL_LUN(io);;
+ struct ctl_lun *lun = CTL_LUN(io);
if (lun->be_lun == NULL ||
lun->be_lun->serseq == CTL_LUN_SERSEQ_OFF)
Modified: head/sys/cam/scsi/scsi_all.c
==============================================================================
--- head/sys/cam/scsi/scsi_all.c Fri Mar 20 16:02:45 2020 (r359168)
+++ head/sys/cam/scsi/scsi_all.c Fri Mar 20 16:15:45 2020 (r359169)
@@ -7112,7 +7112,7 @@ scsi_attrib_vendser_sbuf(struct sbuf *sb, struct scsi_
case SCSI_ATTR_OUTPUT_NONASCII_ESC:
default:
strvis_flags = CAM_STRVIS_FLAG_NONASCII_ESC;
- break;;
+ break;
}
cam_strvis_sbuf(sb, vendser->vendor, sizeof(vendser->vendor),
strvis_flags);
Modified: head/sys/cam/scsi/scsi_da.c
==============================================================================
--- head/sys/cam/scsi/scsi_da.c Fri Mar 20 16:02:45 2020 (r359168)
+++ head/sys/cam/scsi/scsi_da.c Fri Mar 20 16:15:45 2020 (r359169)
@@ -3973,7 +3973,7 @@ out:
static void
da_delete_unmap(struct cam_periph *periph, union ccb *ccb, struct bio *bp)
{
- struct da_softc *softc = (struct da_softc *)periph->softc;;
+ struct da_softc *softc = (struct da_softc *)periph->softc;
struct bio *bp1;
uint8_t *buf = softc->unmap_buf;
struct scsi_unmap_desc *d = (void *)&buf[UNMAP_HEAD_SIZE];
More information about the svn-src-all
mailing list