summaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/garmin_gps.c
diff options
context:
space:
mode:
authorJohan Hovold2013-03-21 12:37:49 +0100
committerGreg Kroah-Hartman2013-03-25 21:54:32 +0100
commit5dbabace4f8514500c729d3e4fe10b2811a35f15 (patch)
treeffa6b6397ba307fb47d2dc067756b8d46abf222a /drivers/usb/serial/garmin_gps.c
parentUSB: garmin_gps: remove bogus disconnect test in close (diff)
downloadkernel-qcow2-linux-5dbabace4f8514500c729d3e4fe10b2811a35f15.tar.gz
kernel-qcow2-linux-5dbabace4f8514500c729d3e4fe10b2811a35f15.tar.xz
kernel-qcow2-linux-5dbabace4f8514500c729d3e4fe10b2811a35f15.zip
USB: garmin_gps: remove bogus disconnect test in bulk callback
Remove bogus disconnect test for serial device being NULL in read bulk callback. This can never happen as the port read urb is killed (and poisoned) at close, which in turn is guaranteed to be called before the last tty reference is dropped (and port->serial is cleared). Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/garmin_gps.c')
-rw-r--r--drivers/usb/serial/garmin_gps.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/usb/serial/garmin_gps.c b/drivers/usb/serial/garmin_gps.c
index 1ade6cf23f7e..b110c573ea85 100644
--- a/drivers/usb/serial/garmin_gps.c
+++ b/drivers/usb/serial/garmin_gps.c
@@ -1181,17 +1181,11 @@ static void garmin_read_bulk_callback(struct urb *urb)
{
unsigned long flags;
struct usb_serial_port *port = urb->context;
- struct usb_serial *serial = port->serial;
struct garmin_data *garmin_data_p = usb_get_serial_port_data(port);
unsigned char *data = urb->transfer_buffer;
int status = urb->status;
int retval;
- if (!serial) {
- dev_dbg(&urb->dev->dev, "%s - bad serial pointer, exiting\n", __func__);
- return;
- }
-
if (status) {
dev_dbg(&urb->dev->dev, "%s - nonzero read bulk status received: %d\n",
__func__, status);