scsi: NCR5380: Avoid compiler warning when -Wimplicit-fallthrough is enabled
Adjust comments accordingly. Cc: Gustavo A. R. Silva <gustavo@embeddedor.com> Cc: Michael Schmitz <schmitzmic@gmail.com> Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
2e96fe92d7
commit
df135e32d7
|
@ -1933,13 +1933,13 @@ static void NCR5380_information_transfer(struct Scsi_Host *instance)
|
|||
if (!hostdata->connected)
|
||||
return;
|
||||
|
||||
/* Fall through to reject message */
|
||||
|
||||
/* Reject message */
|
||||
/* Fall through */
|
||||
default:
|
||||
/*
|
||||
* If we get something weird that we aren't expecting,
|
||||
* reject it.
|
||||
* log it.
|
||||
*/
|
||||
default:
|
||||
if (tmp == EXTENDED_MESSAGE)
|
||||
scmd_printk(KERN_INFO, cmd,
|
||||
"rejecting unknown extended message code %02x, length %d\n",
|
||||
|
|
Loading…
Reference in New Issue