aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2008-07-24 00:29:04 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-24 13:47:26 -0400
commit4c432a8f0134504814aa8dcce6cc57c89d175604 (patch)
treeebc15ff444ec24098c18ec6c0210ea33333f40d3 /scripts
parentf5fe35dd95549b1b419cdeb2ec3fe61fda94fa93 (diff)
checkpatch: usb_free_urb() can take NULL
usb_free_urb() can take a NULL, so let's check and warn about that. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Andy Whitcroft <apw@shadowen.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 13d7a330b5dd..a4e8087a0cae 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2078,6 +2078,13 @@ sub process {
2078 WARN("kfree(NULL) is safe this check is probabally not required\n" . $hereprev); 2078 WARN("kfree(NULL) is safe this check is probabally not required\n" . $hereprev);
2079 } 2079 }
2080 } 2080 }
2081# check for needless usb_free_urb() checks
2082 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
2083 my $expr = $1;
2084 if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
2085 WARN("usb_free_urb(NULL) is safe this check is probably not required\n" . $hereprev);
2086 }
2087 }
2081 2088
2082# warn about #ifdefs in C files 2089# warn about #ifdefs in C files
2083# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) { 2090# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {