aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-xscripts/checkpatch.pl20
1 files changed, 6 insertions, 14 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index d2d5ba17ad6c..a1b870d188c4 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3198,20 +3198,12 @@ sub process {
3198 $herecurr); 3198 $herecurr);
3199 } 3199 }
3200 3200
3201# check for needless kfree() checks 3201# check for needless "if (<foo>) fn(<foo>)" uses
3202 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) { 3202 if ($prevline =~ /\bif\s*\(\s*($Lval)\s*\)/) {
3203 my $expr = $1; 3203 my $expr = '\s*\(\s*' . quotemeta($1) . '\s*\)\s*;';
3204 if ($line =~ /\bkfree\(\Q$expr\E\);/) { 3204 if ($line =~ /\b(kfree|usb_free_urb|debugfs_remove(?:_recursive)?)$expr/) {
3205 WARN("NEEDLESS_KFREE", 3205 WARN('NEEDLESS_IF',
3206 "kfree(NULL) is safe this check is probably not required\n" . $hereprev); 3206 "$1(NULL) is safe this check is probably not required\n" . $hereprev);
3207 }
3208 }
3209# check for needless usb_free_urb() checks
3210 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
3211 my $expr = $1;
3212 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
3213 WARN("NEEDLESS_USB_FREE_URB",
3214 "usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
3215 } 3207 }
3216 } 3208 }
3217 3209