diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-11-26 09:06:49 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-26 22:50:15 -0500 |
commit | fc625960edecfb57e62c2975d1f155155e28e6ba (patch) | |
tree | 024d1d6ceabafec699b5328d4791ea08f54248fc /drivers/usb | |
parent | 67c3c5e28e9bc1dd244829ba7eac8a446da96ff3 (diff) |
USB: adutux: NULL dereferences on disconnect
Both "dev->udev" and "interface->dev" are NULL. These printks are not
very interesting so I just deleted them.
Fixes: 03270634e242 ('USB: Add ADU support for Ontrak ADU devices')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/misc/adutux.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/usb/misc/adutux.c b/drivers/usb/misc/adutux.c index 493c7f268b6f..3071c0ef909b 100644 --- a/drivers/usb/misc/adutux.c +++ b/drivers/usb/misc/adutux.c | |||
@@ -814,15 +814,10 @@ static void adu_disconnect(struct usb_interface *interface) | |||
814 | usb_set_intfdata(interface, NULL); | 814 | usb_set_intfdata(interface, NULL); |
815 | 815 | ||
816 | /* if the device is not opened, then we clean up right now */ | 816 | /* if the device is not opened, then we clean up right now */ |
817 | dev_dbg(&dev->udev->dev, "%s : open count %d\n", | ||
818 | __func__, dev->open_count); | ||
819 | if (!dev->open_count) | 817 | if (!dev->open_count) |
820 | adu_delete(dev); | 818 | adu_delete(dev); |
821 | 819 | ||
822 | mutex_unlock(&adutux_mutex); | 820 | mutex_unlock(&adutux_mutex); |
823 | |||
824 | dev_info(&interface->dev, "ADU device adutux%d now disconnected\n", | ||
825 | (minor - ADU_MINOR_BASE)); | ||
826 | } | 821 | } |
827 | 822 | ||
828 | /* usb specific object needed to register this driver with the usb subsystem */ | 823 | /* usb specific object needed to register this driver with the usb subsystem */ |