From: Joe Perches Date: Fri, 9 Nov 2012 03:04:54 +0000 (+1100) Subject: checkpatch: warn on unnecessary line continuations X-Git-Tag: next-20121112~5^2~80 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7ddbaf128fdaa14aa3200df16675a1600d9891fd;p=karo-tx-linux.git checkpatch: warn on unnecessary line continuations When the previous line is not a line continuation and the current line has a line continuation but is not a #define, emit a warning. Signed-off-by: Joe Perches Cc: Peter Hurley Cc: Andy Whitcroft Signed-off-by: Andrew Morton --- diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index f18750e3bd6c..d4f61a6fed5d 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -3013,6 +3013,15 @@ sub process { "Macros with complex values should be enclosed in parenthesis\n" . "$herectx"); } } + +# check for line continuations outside of #defines + + } else { + if ($prevline !~ /^..*\\$/ && + $line =~ /^\+.*\\$/) { + WARN("LINE_CONTINUATIONS", + "Avoid unnecessary line continuations\n" . $herecurr); + } } # do {} while (0) macro tests: