mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 07:08:07 +00:00
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>
This commit is contained in:
parent
9214d1d80c
commit
c2010a3b9e
1 changed files with 7 additions and 0 deletions
|
@ -1889,6 +1889,13 @@ sub process {
|
||||||
WARN("kfree(NULL) is safe this check is probabally not required\n" . $hereprev);
|
WARN("kfree(NULL) is safe this check is probabally not required\n" . $hereprev);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
# check for needless usb_free_urb() checks
|
||||||
|
if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
|
||||||
|
my $expr = $1;
|
||||||
|
if ($line =~ /\busb_free_urb\(\Q$expr\E\);/) {
|
||||||
|
WARN("usb_free_urb(NULL) is safe this check is probabally not required\n" . $hereprev);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# warn about #ifdefs in C files
|
# warn about #ifdefs in C files
|
||||||
# if ($line =~ /^.#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
|
# if ($line =~ /^.#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue