diff options
author | Warner Losh <imp@FreeBSD.org> | 2023-09-09 17:12:42 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2023-09-09 17:13:25 +0000 |
commit | c1944a82ae5f4f0a2cfe7d58896209a2e58a9743 (patch) | |
tree | d03a6639a6b89124852f5aab5be92a968e87d556 | |
parent | 4cd94c8afb31965c7f18471eaa0b2d5e661c24fb (diff) |
cam: Remove extra break
Sponsored by: Netflix
-rw-r--r-- | sys/cam/scsi/scsi_xpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/scsi/scsi_xpt.c b/sys/cam/scsi/scsi_xpt.c index 2d93a7053183..9e936330fb27 100644 --- a/sys/cam/scsi/scsi_xpt.c +++ b/sys/cam/scsi/scsi_xpt.c @@ -840,7 +840,7 @@ again: } scsi_report_luns(csio, 5, probedone, MSG_SIMPLE_Q_TAG, RPL_REPORT_DEFAULT, rp, periph->path->target->rpl_size, - SSD_FULL_SIZE, 60000); break; + SSD_FULL_SIZE, 60000); break; } case PROBE_MODE_SENSE: |