summaryrefslogtreecommitdiffstats
path: root/drivers/ata/libata-eh.c
diff options
context:
space:
mode:
authorGustavo A. R. Silva <garsilva@embeddedor.com>2017-10-12 15:19:16 -0400
committerTejun Heo <tj@kernel.org>2017-10-23 10:06:09 -0400
commit05b83605992b3d6cd53f8d339842a3b4530ab6e8 (patch)
tree5a00af928601fbf1cfc62348be889ad3e4594a1d /drivers/ata/libata-eh.c
parent14d7045c7f3b0a9d3b00274c23d7d516fc6d44d9 (diff)
ata: mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. In cases where a "drop through" comment was already in place, I replaced it with a proper "fall through" comment, which is what GCC is expecting to find. Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/libata-eh.c')
-rw-r--r--drivers/ata/libata-eh.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c
index 49b3745d2c1f..e070fe8267ff 100644
--- a/drivers/ata/libata-eh.c
+++ b/drivers/ata/libata-eh.c
@@ -3711,9 +3711,11 @@ static int ata_eh_handle_dev_fail(struct ata_device *dev, int err)
3711 case -ENODEV: 3711 case -ENODEV:
3712 /* device missing or wrong IDENTIFY data, schedule probing */ 3712 /* device missing or wrong IDENTIFY data, schedule probing */
3713 ehc->i.probe_mask |= (1 << dev->devno); 3713 ehc->i.probe_mask |= (1 << dev->devno);
3714 /* fall through */
3714 case -EINVAL: 3715 case -EINVAL:
3715 /* give it just one more chance */ 3716 /* give it just one more chance */
3716 ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1); 3717 ehc->tries[dev->devno] = min(ehc->tries[dev->devno], 1);
3718 /* fall through */
3717 case -EIO: 3719 case -EIO:
3718 if (ehc->tries[dev->devno] == 1) { 3720 if (ehc->tries[dev->devno] == 1) {
3719 /* This is the last chance, better to slow 3721 /* This is the last chance, better to slow