mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
floppy: Fix fall-through warning for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning by explicitly adding a break statement instead of letting the code fall through to the next case. Link: https://github.com/KSPP/linux/issues/115 Link: https://lore.kernel.org/linux-hardening/47bcd36a-6524-348b-e802-0691d1b3c429@kernel.dk/ Suggested-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org> Signed-off-by: Denis Efremov <efremov@linux.com>
This commit is contained in:
parent
30ab5db7ee
commit
2c9bdf6e47
@ -2123,6 +2123,7 @@ static void format_interrupt(void)
|
||||
switch (interpret_errors()) {
|
||||
case 1:
|
||||
cont->error();
|
||||
break;
|
||||
case 2:
|
||||
break;
|
||||
case 0:
|
||||
|
Loading…
x
Reference in New Issue
Block a user