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:
parent
8ccf503240
commit
91b685872c
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user