scripts: improve quiet checkpatch
authorThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 13 Dec 2015 02:32:58 +0000 (03:32 +0100)
committerThomas 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

index 9d8541b..fcb24fd 100755 (executable)
@@ -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 ;;