]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
checkpatch: don't try to get maintained status when --no-tree is given
authorJerome Forissier <jerome.forissier@linaro.org>
Tue, 13 Dec 2016 00:46:23 +0000 (16:46 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 13 Dec 2016 02:55:10 +0000 (18:55 -0800)
Fixes the following warning:

  Use of uninitialized value $root in concatenation (.) or string at /path/to/checkpatch.pl line 764.

Link: http://lkml.kernel.org/r/1476719709-16668-1-git-send-email-jerome.forissier@linaro.org
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Brian Norris <computersforpeace@gmail.com>
Acked-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/checkpatch.pl

index 23f462f64a3f9bf7bed0fcb904862621286a6b5e..7000adb5820c36a652ed2fb3ad25ea1bc3544fd1 100755 (executable)
@@ -761,7 +761,7 @@ sub seed_camelcase_file {
 sub is_maintained_obsolete {
        my ($filename) = @_;
 
-       return 0 if (!(-e "$root/scripts/get_maintainer.pl"));
+       return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl"));
 
        my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`;