[PATCH] scripts/checkpatch.pl: seperate mutiple results with black line
From: Yan Hong
Date: Wed Sep 26 2012 - 07:41:24 EST
Before:
total: 0 errors, 0 warnings, 14 lines checked
XXXX.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 7 lines checked
XXXX.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 25 lines checked
XXXX.patch has no obvious style problems and is ready for submission.
After:
total: 0 errors, 0 warnings, 14 lines checked
XXXX.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 7 lines checked
XXXX.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 25 lines checked
XXXX.patch has no obvious style problems and is ready for submission.
Also leave two blank lines after the error message if check fails.
Signed-off-by: Yan Hong <clouds.yan@xxxxxxxxx>
---
scripts/checkpatch.pl | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index ca05ba2..15d9f08 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3588,7 +3588,7 @@ sub process {
print "$filename " if ($summary_file);
print "total: $cnt_error errors, $cnt_warn warnings, " .
(($check)? "$cnt_chk checks, " : "") .
- "$cnt_lines lines checked\n";
+ "$cnt_lines lines checked";
print "\n" if ($quiet == 0);
}
@@ -3617,7 +3617,7 @@ sub process {
}
if ($clean == 1 && $quiet == 0) {
- print "$vname has no obvious style problems and is ready for submission.\n"
+ print "$vname has no obvious style problems and is ready for submission.\n\n"
}
if ($clean == 0 && $quiet == 0) {
print << "EOM";
@@ -3625,6 +3625,8 @@ $vname has style problems, please review.
If any of these errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.
+
+
EOM
}
--
1.7.9.5
--
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/