diff options
author | Wang YanQing <udknight@gmail.com> | 2013-05-08 14:14:44 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-20 15:27:59 -0400 |
commit | 50539dd4f88e8a689a38c94337768fd7ff3fd326 (patch) | |
tree | dfd614a2ebffc296a372a727023ba97327b34e4d /drivers/tty/vt/vt.c | |
parent | 70125e76b0a7aec5035ca45076b96e5f9e230ef7 (diff) |
vt: delete unneeded function unregister_con_driver
Now there is no place use unregister_con_driver,
and we can achieve unregister_con_driver's function
with unregister_con_driver easily, so just delete it
to reduce code size and duplication.
Signed-off-by: Wang YanQing <udknight@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/vt/vt.c')
-rw-r--r-- | drivers/tty/vt/vt.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 8f4a71aa971e..405e1c90ada2 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -3545,7 +3545,7 @@ err: | |||
3545 | 3545 | ||
3546 | 3546 | ||
3547 | /** | 3547 | /** |
3548 | * unregister_con_driver - unregister console driver from console layer | 3548 | * do_unregister_con_driver - unregister console driver from console layer |
3549 | * @csw: console driver | 3549 | * @csw: console driver |
3550 | * | 3550 | * |
3551 | * DESCRIPTION: All drivers that registers to the console layer must | 3551 | * DESCRIPTION: All drivers that registers to the console layer must |
@@ -3555,17 +3555,6 @@ err: | |||
3555 | * | 3555 | * |
3556 | * The driver must unbind first prior to unregistration. | 3556 | * The driver must unbind first prior to unregistration. |
3557 | */ | 3557 | */ |
3558 | int unregister_con_driver(const struct consw *csw) | ||
3559 | { | ||
3560 | int retval; | ||
3561 | |||
3562 | console_lock(); | ||
3563 | retval = do_unregister_con_driver(csw); | ||
3564 | console_unlock(); | ||
3565 | return retval; | ||
3566 | } | ||
3567 | EXPORT_SYMBOL(unregister_con_driver); | ||
3568 | |||
3569 | int do_unregister_con_driver(const struct consw *csw) | 3558 | int do_unregister_con_driver(const struct consw *csw) |
3570 | { | 3559 | { |
3571 | int i, retval = -ENODEV; | 3560 | int i, retval = -ENODEV; |