aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/usb-serial.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/serial/usb-serial.c')
-rw-r--r--drivers/usb/serial/usb-serial.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c
index 92c213fa9317..a30135c7cfe6 100644
--- a/drivers/usb/serial/usb-serial.c
+++ b/drivers/usb/serial/usb-serial.c
@@ -305,7 +305,7 @@ exit:
305static int serial_write_room (struct tty_struct *tty) 305static int serial_write_room (struct tty_struct *tty)
306{ 306{
307 struct usb_serial_port *port = tty->driver_data; 307 struct usb_serial_port *port = tty->driver_data;
308 int retval = -EINVAL; 308 int retval = -ENODEV;
309 309
310 if (!port) 310 if (!port)
311 goto exit; 311 goto exit;
@@ -327,7 +327,7 @@ exit:
327static int serial_chars_in_buffer (struct tty_struct *tty) 327static int serial_chars_in_buffer (struct tty_struct *tty)
328{ 328{
329 struct usb_serial_port *port = tty->driver_data; 329 struct usb_serial_port *port = tty->driver_data;
330 int retval = -EINVAL; 330 int retval = -ENODEV;
331 331
332 if (!port) 332 if (!port)
333 goto exit; 333 goto exit;
@@ -497,19 +497,18 @@ static int serial_tiocmget (struct tty_struct *tty, struct file *file)
497 struct usb_serial_port *port = tty->driver_data; 497 struct usb_serial_port *port = tty->driver_data;
498 498
499 if (!port) 499 if (!port)
500 goto exit; 500 return -ENODEV;
501 501
502 dbg("%s - port %d", __FUNCTION__, port->number); 502 dbg("%s - port %d", __FUNCTION__, port->number);
503 503
504 if (!port->open_count) { 504 if (!port->open_count) {
505 dbg("%s - port not open", __FUNCTION__); 505 dbg("%s - port not open", __FUNCTION__);
506 goto exit; 506 return -ENODEV;
507 } 507 }
508 508
509 if (port->serial->type->tiocmget) 509 if (port->serial->type->tiocmget)
510 return port->serial->type->tiocmget(port, file); 510 return port->serial->type->tiocmget(port, file);
511 511
512exit:
513 return -EINVAL; 512 return -EINVAL;
514} 513}
515 514
@@ -519,19 +518,18 @@ static int serial_tiocmset (struct tty_struct *tty, struct file *file,
519 struct usb_serial_port *port = tty->driver_data; 518 struct usb_serial_port *port = tty->driver_data;
520 519
521 if (!port) 520 if (!port)
522 goto exit; 521 return -ENODEV;
523 522
524 dbg("%s - port %d", __FUNCTION__, port->number); 523 dbg("%s - port %d", __FUNCTION__, port->number);
525 524
526 if (!port->open_count) { 525 if (!port->open_count) {
527 dbg("%s - port not open", __FUNCTION__); 526 dbg("%s - port not open", __FUNCTION__);
528 goto exit; 527 return -ENODEV;
529 } 528 }
530 529
531 if (port->serial->type->tiocmset) 530 if (port->serial->type->tiocmset)
532 return port->serial->type->tiocmset(port, file, set, clear); 531 return port->serial->type->tiocmset(port, file, set, clear);
533 532
534exit:
535 return -EINVAL; 533 return -EINVAL;
536} 534}
537 535