diff options
author | Bart Van Assche <[email protected]> | 2017-08-25 13:46:39 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2017-08-25 17:08:08 -0400 |
commit | e656f0d07aeb68b120a0033dbd1ac2d48da65a41 (patch) | |
tree | e4cc65cde8c21c749292854ec38ff2b824decd2d | |
parent | bcba3c22b5e1240f78d26dbcbbe2c87594f0ae0d (diff) |
scsi: libsas: Annotate fall-through in a switch statement
Signed-off-by: Bart Van Assche <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Cc: Johannes Thumshirn <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/libsas/sas_ata.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c index 87f5e694dbed..70be4425ae0b 100644 --- a/drivers/scsi/libsas/sas_ata.c +++ b/drivers/scsi/libsas/sas_ata.c @@ -343,6 +343,7 @@ static int smp_ata_check_ready(struct ata_link *link) case SAS_END_DEVICE: if (ex_phy->attached_sata_dev) return sas_ata_clear_pending(dev, ex_phy); + /* fall through */ default: return -ENODEV; } |