From: Johan Hovold Date: Tue, 31 Jan 2017 10:51:08 +0000 (+0100) Subject: USB: serial: ark3116: remove redundant interrupt-urb check X-Git-Tag: v4.11-rc1~119^2~6^2~14 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=41a2af93aeebd43daaac397b6662d5822f0742fc;p=linux.git USB: serial: ark3116: remove redundant interrupt-urb check Remove redundant check of num_interrupt_in which has already been verified in probe (killing a NULL-urb would also have been fine). Reviewed-by: Greg Kroah-Hartman Signed-off-by: Johan Hovold --- diff --git a/drivers/usb/serial/ark3116.c b/drivers/usb/serial/ark3116.c index d0fcff20ca7e..e3f6a4e2e2ad 100644 --- a/drivers/usb/serial/ark3116.c +++ b/drivers/usb/serial/ark3116.c @@ -347,8 +347,8 @@ static void ark3116_close(struct usb_serial_port *port) ark3116_write_reg(serial, UART_IER, 0); usb_serial_generic_close(port); - if (serial->num_interrupt_in) - usb_kill_urb(port->interrupt_in_urb); + + usb_kill_urb(port->interrupt_in_urb); } static int ark3116_open(struct tty_struct *tty, struct usb_serial_port *port)