aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/ch341.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@kernel.org>2015-02-19 12:34:41 +0700
committerJohan Hovold <johan@kernel.org>2015-02-26 18:13:02 +0100
commit394a10331a9e43100a8ee293255cfc428c7355ac (patch)
tree6de716e53404d525fcde98851c51569eb545bcb1 /drivers/usb/serial/ch341.c
parentLinux 4.0-rc1 (diff)
downloadlinux-dev-394a10331a9e43100a8ee293255cfc428c7355ac.tar.xz
linux-dev-394a10331a9e43100a8ee293255cfc428c7355ac.zip
USB: ch341: remove redundant close from open error path
Remove redundant call to ch341_close from error path when submission of the interrupt urb fails in open. Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/ch341.c')
-rw-r--r--drivers/usb/serial/ch341.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c
index 2d72aa3564a3..79c56d93d666 100644
--- a/drivers/usb/serial/ch341.c
+++ b/drivers/usb/serial/ch341.c
@@ -328,7 +328,6 @@ static int ch341_open(struct tty_struct *tty, struct usb_serial_port *port)
if (r) {
dev_err(&port->dev, "%s - failed to submit interrupt urb: %d\n",
__func__, r);
- ch341_close(port);
goto out;
}