diff options
| author | Jesper Juhl <[email protected]> | 2005-04-19 00:39:34 +0000 |
|---|---|---|
| committer | Greg K-H <[email protected]> | 2005-04-19 00:39:34 +0000 |
| commit | 1bc3c9e1e44c2059fe2ffa6ff70ad0a925d7b05f (patch) | |
| tree | 0bc14ec53acf3b4c08a9995c7ea335e236435558 /drivers/usb/core/devices.c | |
| parent | [PATCH] usb: kfree() cleanups in drivers/usb/core/devio.c (diff) | |
| download | kernel-1bc3c9e1e44c2059fe2ffa6ff70ad0a925d7b05f.tar.gz kernel-1bc3c9e1e44c2059fe2ffa6ff70ad0a925d7b05f.zip | |
[PATCH] USB: kfree cleanup for drivers/usb/* - no need to check for NULL
Get rid of a bunch of redundant NULL pointer checks in drivers/usb/*,
there's no need to check a pointer for NULL before calling kfree() on it.
Signed-off-by: Jesper Juhl <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Index: gregkh-2.6/drivers/usb/class/audio.c
===================================================================
Diffstat (limited to 'drivers/usb/core/devices.c')
| -rw-r--r-- | drivers/usb/core/devices.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/usb/core/devices.c b/drivers/usb/core/devices.c index b87608b7051b..ef0b35731ff0 100644 --- a/drivers/usb/core/devices.c +++ b/drivers/usb/core/devices.c @@ -637,11 +637,8 @@ static int usb_device_open(struct inode *inode, struct file *file) static int usb_device_release(struct inode *inode, struct file *file) { - if (file->private_data) { - kfree(file->private_data); - file->private_data = NULL; - } - + kfree(file->private_data); + file->private_data = NULL; return 0; } |
