[PATCH 3.5.0-rc2] checkpatch:Fix un-necessary whitespace warning.

From: Srinivas KANDAGATLA
Date: Thu Jun 14 2012 - 04:24:04 EST


From: Srinivas Kandagatla <srinivas.kandagatla@xxxxxx>

This patch fixes "check spaces before a quoted newline" to consider
only new lines added in the patch, rather than checking all the lines in
the patch.

Without this patch the "check spaces before a quoted newline" will check
all the lines in the patch and throw un-nessary warnings.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@xxxxxx>
---
scripts/checkpatch.pl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index e5bd60f..6fdd2a3 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1788,7 +1788,7 @@ sub process {
}

# check for spaces before a quoted newline
- if ($rawline =~ /^.*\".*\s\\n/) {
+ if ($rawline =~ /^\+.*\".*\s\\n/) {
WARN("QUOTED_WHITESPACE_BEFORE_NEWLINE",
"unnecessary whitespace before a quoted newline\n" . $herecurr);
}
--
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/