diff options
Diffstat (limited to 'drivers/usb/serial/ark3116.c')
-rw-r--r-- | drivers/usb/serial/ark3116.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/serial/ark3116.c b/drivers/usb/serial/ark3116.c index edd685791a6b..ea2175bb2274 100644 --- a/drivers/usb/serial/ark3116.c +++ b/drivers/usb/serial/ark3116.c | |||
@@ -341,7 +341,7 @@ static int ark3116_open(struct usb_serial_port *port, struct file *filp) | |||
341 | 341 | ||
342 | result = usb_serial_generic_open(port, filp); | 342 | result = usb_serial_generic_open(port, filp); |
343 | if (result) | 343 | if (result) |
344 | return result; | 344 | goto err_out; |
345 | 345 | ||
346 | /* open */ | 346 | /* open */ |
347 | ARK3116_RCV(serial, 111, 0xFE, 0xC0, 0x0000, 0x0003, 0x02, buf); | 347 | ARK3116_RCV(serial, 111, 0xFE, 0xC0, 0x0000, 0x0003, 0x02, buf); |
@@ -372,6 +372,7 @@ static int ark3116_open(struct usb_serial_port *port, struct file *filp) | |||
372 | if (port->tty) | 372 | if (port->tty) |
373 | ark3116_set_termios(port, &tmp_termios); | 373 | ark3116_set_termios(port, &tmp_termios); |
374 | 374 | ||
375 | err_out: | ||
375 | kfree(buf); | 376 | kfree(buf); |
376 | 377 | ||
377 | return result; | 378 | return result; |