diff options
author | Wang YanQing <udknight@gmail.com> | 2013-05-08 14:14:39 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-20 15:27:59 -0400 |
commit | 70125e76b0a7aec5035ca45076b96e5f9e230ef7 (patch) | |
tree | a009f959b4eec059facc5681dc925067546d4f8d /drivers/tty/vt/vt.c | |
parent | 77d6c98454f0443f03ec690fb0ea25a26c01ddcb (diff) |
fbcon: convert last two unregister_con_driver call to do_unregister_con_driver
There are only two place use unregister_con_driver now, this patch
convert them to do_unregister_con_driver too, then we can delete
unregister_con_driver whos function can be achieved with do_unregister_con_driver
easily 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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index d5bfa869675b..8f4a71aa971e 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -3631,7 +3631,9 @@ EXPORT_SYMBOL_GPL(do_take_over_console); | |||
3631 | */ | 3631 | */ |
3632 | void give_up_console(const struct consw *csw) | 3632 | void give_up_console(const struct consw *csw) |
3633 | { | 3633 | { |
3634 | unregister_con_driver(csw); | 3634 | console_lock(); |
3635 | do_unregister_con_driver(csw); | ||
3636 | console_unlock(); | ||
3635 | } | 3637 | } |
3636 | 3638 | ||
3637 | static int __init vtconsole_class_init(void) | 3639 | static int __init vtconsole_class_init(void) |