aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/kernel/io_delay.c
diff options
context:
space:
mode:
authorGravatar Masahiro Yamada <yamada.masahiro@socionext.com> 2019-05-21 16:22:10 +0900
committerGravatar Ingo Molnar <mingo@kernel.org> 2019-05-24 08:46:06 +0200
commite62a4239c3dfd182a7e676cfe9efb1f4cec5ca25 (patch)
tree6ddfdfc7dd1e39c376e577d018a6393231ba4769 /arch/x86/kernel/io_delay.c
parentMerge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm6... (diff)
downloadlinux-e62a4239c3dfd182a7e676cfe9efb1f4cec5ca25.tar.gz
linux-e62a4239c3dfd182a7e676cfe9efb1f4cec5ca25.tar.bz2
linux-e62a4239c3dfd182a7e676cfe9efb1f4cec5ca25.zip
x86/io_delay: Break instead of fallthrough in switch statement
The current code is fine since 'case CONFIG_IO_DELAY_TYPE_NONE' does nothing, but scripts/checkpatch.pl complains about this: warning: Possible switch case/default not preceded by break or fallthrough comment I like break statement better than a fallthrough comment here. It avoids the warning and clarify the code. No behavior change is intended. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/20190521072211.21014-1-yamada.masahiro@socionext.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/io_delay.c')
-rw-r--r--arch/x86/kernel/io_delay.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/io_delay.c b/arch/x86/kernel/io_delay.c
index 805b7a341aca..3dc874d5d43b 100644
--- a/arch/x86/kernel/io_delay.c
+++ b/arch/x86/kernel/io_delay.c
@@ -39,6 +39,7 @@ void native_io_delay(void)
* are shorter until calibrated):
*/
udelay(2);
+ break;
case CONFIG_IO_DELAY_TYPE_NONE:
break;
}