summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-06-01 09:01:02 +0000
committerphk <phk@FreeBSD.org>2003-06-01 09:01:02 +0000
commit51281e3429743b3e87e9c30c9c22306a8b2ae491 (patch)
tree593669b4e81809c57ff381070c7b4b20a7a8327b /sys
parent10b3bd530b2b085894118a8bf0f6785b8b62d3ae (diff)
downloadFreeBSD-src-51281e3429743b3e87e9c30c9c22306a8b2ae491.zip
FreeBSD-src-51281e3429743b3e87e9c30c9c22306a8b2ae491.tar.gz
Add /* FALLTHROUGH */
Found by: FlexeLint
Diffstat (limited to 'sys')
-rw-r--r--sys/cam/cam_periph.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c
index 5aee9ea..016e085 100644
--- a/sys/cam/cam_periph.c
+++ b/sys/cam/cam_periph.c
@@ -1553,24 +1553,28 @@ cam_periph_error(union ccb *ccb, cam_flags camflags,
printf("Request completed with CAM_REQ_CMP_ERR\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_CMD_TIMEOUT:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Command timed out\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_UNEXP_BUSFREE:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Unexpected Bus Free\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_UNCOR_PARITY:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Uncorrected Parity Error\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_DATA_RUN_ERR:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
OpenPOWER on IntegriCloud