diff options
author | Wang YanQing <udknight@gmail.com> | 2013-05-08 14:14:29 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-20 15:27:59 -0400 |
commit | 77d6c98454f0443f03ec690fb0ea25a26c01ddcb (patch) | |
tree | 7b964a4381148691fa89ad4995e7400d8b72d29f /drivers/tty/vt | |
parent | c62a1e57e49d956fe45ee49197ba3bd5763c87ab (diff) |
vt: delete unneeded function bind_con_driver
Now there is no place use bind_con_driver,
and do_bind_con_driver can achieve bind_con_driver's
function 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')
-rw-r--r-- | drivers/tty/vt/vt.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 7e0953cd3f3a..d5bfa869675b 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -3088,17 +3088,6 @@ err: | |||
3088 | }; | 3088 | }; |
3089 | 3089 | ||
3090 | 3090 | ||
3091 | static int bind_con_driver(const struct consw *csw, int first, int last, | ||
3092 | int deflt) | ||
3093 | { | ||
3094 | int ret; | ||
3095 | |||
3096 | console_lock(); | ||
3097 | ret = do_bind_con_driver(csw, first, last, deflt); | ||
3098 | console_unlock(); | ||
3099 | return ret; | ||
3100 | } | ||
3101 | |||
3102 | #ifdef CONFIG_VT_HW_CONSOLE_BINDING | 3091 | #ifdef CONFIG_VT_HW_CONSOLE_BINDING |
3103 | static int con_is_graphics(const struct consw *csw, int first, int last) | 3092 | static int con_is_graphics(const struct consw *csw, int first, int last) |
3104 | { | 3093 | { |