git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0853f25
)
scripts: improve quiet checkpatch
author
Thomas Monjalon
<thomas.monjalon@6wind.com>
Sun, 13 Dec 2015 02:32:58 +0000
(
03:32
+0100)
committer
Thomas Monjalon
<thomas.monjalon@6wind.com>
Thu, 24 Mar 2016 21:16:01 +0000
(22:16 +0100)
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
patch
|
blob
|
history
diff --git
a/scripts/checkpatches.sh
b/scripts/checkpatches.sh
index
9d8541b
..
fcb24fd
100755
(executable)
--- a/
scripts/checkpatches.sh
+++ b/
scripts/checkpatches.sh
@@
-59,7
+59,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 ;;