From: Andrew Morton Date: Tue, 13 Dec 2016 00:46:26 +0000 (-0800) Subject: scripts/checkpatch.pl: fix spelling X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=224236d9c3a65d23cd3f113042404cf5e09e393c;p=linux-beck.git scripts/checkpatch.pl: fix spelling s/preceeded/preceded/ Cc: Joe Perches Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 7000adb5820c..9f651bcde046 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -5925,7 +5925,7 @@ sub process { } if (!$has_break && $has_statement) { WARN("MISSING_BREAK", - "Possible switch case/default not preceeded by break or fallthrough comment\n" . $herecurr); + "Possible switch case/default not preceded by break or fallthrough comment\n" . $herecurr); } }