linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scripts/checkpatch.pl: seperate mutiple results with black line
@ 2012-09-26 11:41 Yan Hong
  0 siblings, 0 replies; only message in thread
From: Yan Hong @ 2012-09-26 11:41 UTC (permalink / raw)
  To: apw; +Cc: linux-kernel

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@gmail.com>
---
 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


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-09-26 11:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-26 11:41 [PATCH] scripts/checkpatch.pl: seperate mutiple results with black line Yan Hong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).