aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2016-12-12 16:46:26 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-12 18:55:10 -0800
commit224236d9c3a65d23cd3f113042404cf5e09e393c (patch)
treeb960590f988b64abfdc3bc6787cda909f502a5a8 /scripts
parentcheckpatch: don't try to get maintained status when --no-tree is given (diff)
downloadlinux-dev-224236d9c3a65d23cd3f113042404cf5e09e393c.tar.xz
linux-dev-224236d9c3a65d23cd3f113042404cf5e09e393c.zip
scripts/checkpatch.pl: fix spelling
s/preceeded/preceded/ Cc: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
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);
}
}