]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
sh: kernel: hw_breakpoint: Fix missing break in switch statement
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Sat, 10 Aug 2019 04:43:56 +0000 (23:43 -0500)
committerSasha Levin <sashal@kernel.org>
Sun, 25 Aug 2019 14:10:20 +0000 (10:10 -0400)
commit 1ee1119d184bb06af921b48c3021d921bbd85bac upstream.

Add missing break statement in order to prevent the code from falling
through to case SH_BREAKPOINT_WRITE.

Fixes: 09a072947791 ("sh: hw-breakpoints: Add preliminary support for SH-4A UBC.")
Cc: stable@vger.kernel.org
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/sh/kernel/hw_breakpoint.c

index bc96b16288c1aec920d4e1fc41417f5236ddfa3a..af6a65ac04cf3c8dc68031f5c12b5ebbe43a9343 100644 (file)
@@ -157,6 +157,7 @@ int arch_bp_generic_fields(int sh_len, int sh_type,
        switch (sh_type) {
        case SH_BREAKPOINT_READ:
                *gen_type = HW_BREAKPOINT_R;
+               break;
        case SH_BREAKPOINT_WRITE:
                *gen_type = HW_BREAKPOINT_W;
                break;