]> git.baikalelectronics.ru Git - kernel.git/commit
sh: kgdb: Mark expected switch fall-throughs
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 25 Nov 2019 07:16:21 +0000 (16:16 +0900)
committerGustavo A. R. Silva <gustavo@embeddedor.com>
Tue, 10 Dec 2019 22:11:42 +0000 (16:11 -0600)
commitf9e82339e8b3de665a4c6347411a2d7f1aa13a8a
treeca66a4d2c9a3de45e09e589c5df2bc5126ca79bf
parent47599c6298943ede4662b5e31dfe375feac1b48a
sh: kgdb: Mark expected switch fall-throughs

Mark switch cases where we are expecting to fall through.

This patch fixes the following error:

LINUX/arch/sh/kernel/kgdb.c: In function 'kgdb_arch_handle_exception':
LINUX/arch/sh/kernel/kgdb.c:267:6: error: this statement may fall through [-Werror=implicit-fallthrough=]
if (kgdb_hex2long(&ptr, &addr))
^
LINUX/arch/sh/kernel/kgdb.c:269:2: note: here
case 'D':
^~~~

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
arch/sh/kernel/kgdb.c