diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-06-19 10:34:07 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-20 19:20:24 -0400 |
commit | c50f2af8e1a33e95e4d3b7af9db05ed9096c6072 (patch) | |
tree | 49e44d014c0af8b1fc7bbdef9646b27130a84145 /drivers/usb/serial | |
parent | 996a776544cc8a71653ffa95a89c317f33d2cb4a (diff) |
USB: serial: Remove unused serial_priv variable
qt2_open() and qt2_close() both set a serial_priv variable but never
used it. Remove the variable from the functions.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/quatech2.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/usb/serial/quatech2.c b/drivers/usb/serial/quatech2.c index 8dd88ebe9863..151670b6b72a 100644 --- a/drivers/usb/serial/quatech2.c +++ b/drivers/usb/serial/quatech2.c | |||
@@ -345,7 +345,6 @@ static void qt2_set_termios(struct tty_struct *tty, | |||
345 | static int qt2_open(struct tty_struct *tty, struct usb_serial_port *port) | 345 | static int qt2_open(struct tty_struct *tty, struct usb_serial_port *port) |
346 | { | 346 | { |
347 | struct usb_serial *serial; | 347 | struct usb_serial *serial; |
348 | struct qt2_serial_private *serial_priv; | ||
349 | struct qt2_port_private *port_priv; | 348 | struct qt2_port_private *port_priv; |
350 | u8 *data; | 349 | u8 *data; |
351 | u16 device_port; | 350 | u16 device_port; |
@@ -357,7 +356,6 @@ static int qt2_open(struct tty_struct *tty, struct usb_serial_port *port) | |||
357 | serial = port->serial; | 356 | serial = port->serial; |
358 | 357 | ||
359 | port_priv = usb_get_serial_port_data(port); | 358 | port_priv = usb_get_serial_port_data(port); |
360 | serial_priv = usb_get_serial_data(serial); | ||
361 | 359 | ||
362 | /* set the port to RS232 mode */ | 360 | /* set the port to RS232 mode */ |
363 | status = qt2_control_msg(serial->dev, QT2_GET_SET_QMCR, | 361 | status = qt2_control_msg(serial->dev, QT2_GET_SET_QMCR, |
@@ -417,13 +415,11 @@ static int qt2_open(struct tty_struct *tty, struct usb_serial_port *port) | |||
417 | static void qt2_close(struct usb_serial_port *port) | 415 | static void qt2_close(struct usb_serial_port *port) |
418 | { | 416 | { |
419 | struct usb_serial *serial; | 417 | struct usb_serial *serial; |
420 | struct qt2_serial_private *serial_priv; | ||
421 | struct qt2_port_private *port_priv; | 418 | struct qt2_port_private *port_priv; |
422 | unsigned long flags; | 419 | unsigned long flags; |
423 | int i; | 420 | int i; |
424 | 421 | ||
425 | serial = port->serial; | 422 | serial = port->serial; |
426 | serial_priv = usb_get_serial_data(serial); | ||
427 | port_priv = usb_get_serial_port_data(port); | 423 | port_priv = usb_get_serial_port_data(port); |
428 | 424 | ||
429 | port_priv->is_open = false; | 425 | port_priv->is_open = false; |