summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorNicolas Palix <nicolas.palix@imag.fr>2013-03-02 22:36:25 +0100
committerMichal Marek <mmarek@suse.cz>2013-04-08 15:42:02 +0200
commit35d88a38710583f3b5afc3255d7bc190a50e1af7 (patch)
treefc4a961475f93380049e3e83316862e6d3d15b1c /scripts
parent4c6e00cffcd478a369b6fd0ba61f5b0f9643ff43 (diff)
downloadlinux-3.10-35d88a38710583f3b5afc3255d7bc190a50e1af7.tar.gz
linux-3.10-35d88a38710583f3b5afc3255d7bc190a50e1af7.tar.bz2
linux-3.10-35d88a38710583f3b5afc3255d7bc190a50e1af7.zip
Coccinelle: Restore coccicheck verbosity in ONLINE mode (C=1 or C=2)
A recent patch have introduce the VERBOSE variable and comments now depend on it. However, the message printed for each cocci file such not be printed when the ONLINE mode is active, whatever is the value of VERBOSE. Signed-off-by: Nicolas Palix <nicolas.palix@imag.fr> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/coccicheck2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/coccicheck b/scripts/coccicheck
index 85d31899ad9..7f0d6a6c500 100755
--- a/scripts/coccicheck
+++ b/scripts/coccicheck
@@ -72,7 +72,7 @@ coccinelle () {
#
# $SPATCH -D $MODE $FLAGS -parse_cocci $COCCI $OPT > /dev/null
- if [ $VERBOSE -ne 0 ] ; then
+ if [ $VERBOSE -ne 0 -a $ONLINE -eq 0 ] ; then
FILE=`echo $COCCI | sed "s|$srctree/||"`