Add /* FALLTHROUGH */

Found by:	FlexeLint
This commit is contained in:
Poul-Henning Kamp 2003-06-01 09:01:02 +00:00
parent 798c9e50b0
commit 058675037b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115606

View file

@ -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);