aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/debug
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2018-08-04 22:48:44 -0400
committerDaniel Thompson <daniel.thompson@linaro.org>2018-11-13 15:38:50 -0500
commit646558ff1643467d3b941b47f519867cbca462c3 (patch)
treeb2d256ff19883759a8bfdd1b08368c9d37e79321 /kernel/debug
parent01cb37351bafc1b44b962842926210115e231f0a (diff)
kdb: kdb_support: mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Notice that in this particular case, I replaced the code comments with a proper "fall through" annotation, which is what GCC is expecting to find. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Diffstat (limited to 'kernel/debug')
-rw-r--r--kernel/debug/kdb/kdb_support.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/debug/kdb/kdb_support.c b/kernel/debug/kdb/kdb_support.c
index b14b0925c184..50bf9b119bad 100644
--- a/kernel/debug/kdb/kdb_support.c
+++ b/kernel/debug/kdb/kdb_support.c
@@ -432,7 +432,7 @@ int kdb_getphysword(unsigned long *word, unsigned long addr, size_t size)
432 *word = w8; 432 *word = w8;
433 break; 433 break;
434 } 434 }
435 /* drop through */ 435 /* fall through */
436 default: 436 default:
437 diag = KDB_BADWIDTH; 437 diag = KDB_BADWIDTH;
438 kdb_printf("kdb_getphysword: bad width %ld\n", (long) size); 438 kdb_printf("kdb_getphysword: bad width %ld\n", (long) size);
@@ -481,7 +481,7 @@ int kdb_getword(unsigned long *word, unsigned long addr, size_t size)
481 *word = w8; 481 *word = w8;
482 break; 482 break;
483 } 483 }
484 /* drop through */ 484 /* fall through */
485 default: 485 default:
486 diag = KDB_BADWIDTH; 486 diag = KDB_BADWIDTH;
487 kdb_printf("kdb_getword: bad width %ld\n", (long) size); 487 kdb_printf("kdb_getword: bad width %ld\n", (long) size);
@@ -525,7 +525,7 @@ int kdb_putword(unsigned long addr, unsigned long word, size_t size)
525 diag = kdb_putarea(addr, w8); 525 diag = kdb_putarea(addr, w8);
526 break; 526 break;
527 } 527 }
528 /* drop through */ 528 /* fall through */
529 default: 529 default:
530 diag = KDB_BADWIDTH; 530 diag = KDB_BADWIDTH;
531 kdb_printf("kdb_putword: bad width %ld\n", (long) size); 531 kdb_printf("kdb_putword: bad width %ld\n", (long) size);