| From: Johan Hovold <johan@kernel.org> |
| Date: Thu, 19 Feb 2015 12:34:41 +0700 |
| Subject: USB: ch341: remove redundant close from open error path |
| |
| commit 394a10331a9e43100a8ee293255cfc428c7355ac upstream. |
| |
| 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> |
| [bwh: Backported to 3.2: adjust context] |
| Signed-off-by: Ben Hutchings <ben@decadent.org.uk> |
| --- |
| drivers/usb/serial/ch341.c | 1 - |
| 1 file changed, 1 deletion(-) |
| |
| --- a/drivers/usb/serial/ch341.c |
| +++ b/drivers/usb/serial/ch341.c |
| @@ -338,7 +338,6 @@ static int ch341_open(struct tty_struct |
| if (r) { |
| dev_err(&port->dev, "%s - failed submitting interrupt urb," |
| " error %d\n", __func__, r); |
| - ch341_close(port); |
| goto out; |
| } |
| |