diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2019-01-23 09:14:13 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-01-29 20:08:42 +0100 |
commit | 75b710af7139768fd4ba2d4e05335d2344796279 (patch) | |
tree | 19b6a083e7a7c1fdf38c35af02e888e2f72659c4 /kernel/time/hrtimer.c | |
parent | timekeeping/debug: No need to check return value of debugfs_create functions (diff) | |
download | linux-75b710af7139768fd4ba2d4e05335d2344796279.tar.xz linux-75b710af7139768fd4ba2d4e05335d2344796279.zip |
timers: Mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where fall through is indeed expected.
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Stephen Boyd <sboyd@kernel.org>
Link: https://lkml.kernel.org/r/20190123081413.GA3949@embeddedor
Diffstat (limited to 'kernel/time/hrtimer.c')
-rw-r--r-- | kernel/time/hrtimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/hrtimer.c b/kernel/time/hrtimer.c index f5cfa1b73d6f..6418e1bdc549 100644 --- a/kernel/time/hrtimer.c +++ b/kernel/time/hrtimer.c @@ -364,7 +364,7 @@ static bool hrtimer_fixup_activate(void *addr, enum debug_obj_state state) switch (state) { case ODEBUG_STATE_ACTIVE: WARN_ON(1); - + /* fall through */ default: return false; } |