All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scripts: improve quiet checkpatch
@ 2015-12-13  2:37 Thomas Monjalon
  2016-03-24 21:20 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Monjalon @ 2015-12-13  2:37 UTC (permalink / raw)
  To: dev

The option --no-summary will remove this line in quiet mode:
	total: 1 errors, 0 warnings, 7 lines checked

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
---
 scripts/checkpatches.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/checkpatches.sh b/scripts/checkpatches.sh
index afc611b..36376e6 100755
--- a/scripts/checkpatches.sh
+++ b/scripts/checkpatches.sh
@@ -58,7 +58,7 @@ quiet=false
 verbose=false
 while getopts hqv ARG ; do
 	case $ARG in
-		q ) quiet=true ;;
+		q ) quiet=true && options="$options --no-summary" ;;
 		v ) verbose=true ;;
 		h ) print_usage ; exit 0 ;;
 		? ) print_usage ; exit 1 ;;
-- 
2.5.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-03-24 21:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-13  2:37 [PATCH] scripts: improve quiet checkpatch Thomas Monjalon
2016-03-24 21:20 ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.