scsi: ppa: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Addresses-Coverity-ID: 114988 ("Missing break in switch") Reviewed-by: Kees Cook <keescook@chromium.org> Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
This commit is contained in:
parent
6bb0497834
commit
2d5ffc2611
|
@ -717,6 +717,7 @@ static int ppa_engine(ppa_struct *dev, struct scsi_cmnd *cmd)
|
|||
}
|
||||
cmd->SCp.phase++;
|
||||
}
|
||||
/* fall through */
|
||||
|
||||
case 2: /* Phase 2 - We are now talking to the scsi bus */
|
||||
if (!ppa_select(dev, scmd_id(cmd))) {
|
||||
|
|
Loading…
Reference in New Issue