|
@@ -172,6 +172,7 @@ void free_tty_struct(struct tty_struct *tty)
|
|
|
{
|
|
|
if (!tty)
|
|
|
return;
|
|
|
+ tty_ldisc_deinit(tty);
|
|
|
put_device(tty->dev);
|
|
|
kfree(tty->write_buf);
|
|
|
tty->magic = 0xDEADDEAD;
|
|
@@ -1529,7 +1530,7 @@ struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx)
|
|
|
tty_lock(tty);
|
|
|
retval = tty_driver_install_tty(driver, tty);
|
|
|
if (retval < 0)
|
|
|
- goto err_deinit_tty;
|
|
|
+ goto err_free_tty;
|
|
|
|
|
|
if (!tty->port)
|
|
|
tty->port = driver->ports[idx];
|
|
@@ -1551,9 +1552,8 @@ struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx)
|
|
|
/* Return the tty locked so that it cannot vanish under the caller */
|
|
|
return tty;
|
|
|
|
|
|
-err_deinit_tty:
|
|
|
+err_free_tty:
|
|
|
tty_unlock(tty);
|
|
|
- deinitialize_tty_struct(tty);
|
|
|
free_tty_struct(tty);
|
|
|
err_module_put:
|
|
|
module_put(driver->owner);
|
|
@@ -3162,20 +3162,6 @@ struct tty_struct *alloc_tty_struct(struct tty_driver *driver, int idx)
|
|
|
return tty;
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * deinitialize_tty_struct
|
|
|
- * @tty: tty to deinitialize
|
|
|
- *
|
|
|
- * This subroutine deinitializes a tty structure that has been newly
|
|
|
- * allocated but tty_release cannot be called on that yet.
|
|
|
- *
|
|
|
- * Locking: none - tty in question must not be exposed at this point
|
|
|
- */
|
|
|
-void deinitialize_tty_struct(struct tty_struct *tty)
|
|
|
-{
|
|
|
- tty_ldisc_deinit(tty);
|
|
|
-}
|
|
|
-
|
|
|
/**
|
|
|
* tty_put_char - write one character to a tty
|
|
|
* @tty: tty
|