diff options
Diffstat (limited to 'drivers/usb/class')
-rw-r--r-- | drivers/usb/class/cdc-acm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 9543b19d410c..11a1130319d1 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
@@ -508,17 +508,12 @@ static int acm_tty_install(struct tty_driver *driver, struct tty_struct *tty) | |||
508 | if (!acm) | 508 | if (!acm) |
509 | return -ENODEV; | 509 | return -ENODEV; |
510 | 510 | ||
511 | retval = tty_init_termios(tty); | 511 | retval = tty_standard_install(driver, tty); |
512 | if (retval) | 512 | if (retval) |
513 | goto error_init_termios; | 513 | goto error_init_termios; |
514 | 514 | ||
515 | tty->driver_data = acm; | 515 | tty->driver_data = acm; |
516 | 516 | ||
517 | /* Final install (we use the default method) */ | ||
518 | tty_driver_kref_get(driver); | ||
519 | tty->count++; | ||
520 | driver->ttys[tty->index] = tty; | ||
521 | |||
522 | return 0; | 517 | return 0; |
523 | 518 | ||
524 | error_init_termios: | 519 | error_init_termios: |