]> git.baikalelectronics.ru Git - kernel.git/commit
ataflop: Mark expected switch fall-through
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Mon, 29 Jul 2019 21:10:53 +0000 (16:10 -0500)
committerJens Axboe <axboe@kernel.dk>
Mon, 29 Jul 2019 21:24:58 +0000 (15:24 -0600)
commit014799b2b5975e0575178c6f2024709ce5dfdf41
treef3b314ea6394967ad6b1b0a37f7fe82a9a3ff84b
parentbfe2de5a355e71917b08e947fe3e805ec2f51c71
ataflop: Mark expected switch fall-through

Mark switch cases where we are expecting to fall through.

This patch fixes the following warning (Building: m68k):

drivers/block/ataflop.c: In function ‘fd_locked_ioctl’:
drivers/block/ataflop.c:1728:3: warning: this statement may fall through [-Wimplicit-fallthrough=]
   set_capacity(floppy->disk, MAX_DISK_SIZE * 2);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
drivers/block/ataflop.c:1729:2: note: here
  case FDFMTEND:
  ^~~~

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/ataflop.c