diff options
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/usb-serial.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c index 5c4fcf8d5f98..8c46813b9afa 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c | |||
@@ -364,6 +364,8 @@ static int serial_write(struct tty_struct *tty, const unsigned char *buf, | |||
364 | 364 | ||
365 | /* pass on to the driver specific version of this function */ | 365 | /* pass on to the driver specific version of this function */ |
366 | retval = port->serial->type->write(tty, port, buf, count); | 366 | retval = port->serial->type->write(tty, port, buf, count); |
367 | if (retval < 0) | ||
368 | retval = usb_translate_errors(retval); | ||
367 | exit: | 369 | exit: |
368 | return retval; | 370 | return retval; |
369 | } | 371 | } |