USB: metro-usb: always disable uart on close
Always try to disable the uart on close. Since the switch to tty ports, close will be called as part of shutdown before disconnect returns. Hence there is no need to check the disconnected flag, and we can put devices in disabled states also on driver unbind. Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9fcb2e6e7e
commit
5813f281bb
|
@ -177,10 +177,7 @@ static void metrousb_cleanup(struct usb_serial_port *port)
|
||||||
usb_unlink_urb(port->interrupt_in_urb);
|
usb_unlink_urb(port->interrupt_in_urb);
|
||||||
usb_kill_urb(port->interrupt_in_urb);
|
usb_kill_urb(port->interrupt_in_urb);
|
||||||
|
|
||||||
mutex_lock(&port->serial->disc_mutex);
|
metrousb_send_unidirectional_cmd(UNI_CMD_CLOSE, port);
|
||||||
if (!port->serial->disconnected)
|
|
||||||
metrousb_send_unidirectional_cmd(UNI_CMD_CLOSE, port);
|
|
||||||
mutex_unlock(&port->serial->disc_mutex);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
|
static int metrousb_open(struct tty_struct *tty, struct usb_serial_port *port)
|
||||||
|
|
Loading…
Reference in New Issue