Get rid of silly /* FALLTHROUGH */ lines

Consistently omit /* FALLTHROUGH */ when we have a case statement that does
nothing. Since compilers don't warn about stacked case statements, and we were
inconsistent, resolve by removing extras.
This commit is contained in:
Warner Losh 2020-03-03 17:40:29 +00:00
parent 8ccf503240
commit 91b685872c

View File

@ -2686,11 +2686,8 @@ xpt_action_default(union ccb *start_ccb)
start_ccb->ataio.resid = 0;
/* FALLTHROUGH */
case XPT_NVME_IO:
/* FALLTHROUGH */
case XPT_NVME_ADMIN:
/* FALLTHROUGH */
case XPT_MMC_IO:
/* FALLTHROUGH */
case XPT_RESET_DEV:
case XPT_ENG_EXEC:
case XPT_SMP_IO: