aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/accessibility
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavoars@kernel.org>2020-11-20 12:34:35 -0600
committerGustavo A. R. Silva <gustavoars@kernel.org>2021-05-17 19:38:01 -0500
commitf5e9724c42d94b9acf061cc8225c4778b22186b7 (patch)
tree3081543782bd52cf61f5494b59cc2ac811e72e0e /drivers/accessibility
parentipv4: Fix fall-through warnings for Clang (diff)
downloadlinux-dev-f5e9724c42d94b9acf061cc8225c4778b22186b7.tar.xz
linux-dev-f5e9724c42d94b9acf061cc8225c4778b22186b7.zip
braille_console: Fix fall-through warnings 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 Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Diffstat (limited to 'drivers/accessibility')
-rw-r--r--drivers/accessibility/braille/braille_console.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/accessibility/braille/braille_console.c b/drivers/accessibility/braille/braille_console.c
index 9861302cc7db..359bead4b280 100644
--- a/drivers/accessibility/braille/braille_console.c
+++ b/drivers/accessibility/braille/braille_console.c
@@ -246,6 +246,7 @@ static int keyboard_notifier_call(struct notifier_block *blk,
beep(440);
}
}
+ break;
case KBD_UNBOUND_KEYCODE:
case KBD_UNICODE:
case KBD_KEYSYM: