diff options
author | Wang YanQing <udknight@gmail.com> | 2013-05-08 14:14:15 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-20 15:27:59 -0400 |
commit | c1f5e38a5d3583b877619f95a922b607966dfc2e (patch) | |
tree | 4e3e9c2fed9dba8f2e833a8cae9a09ce748a9adc /drivers/tty/vt/vt.c | |
parent | 618f2b90077ef22e5c7025fca4e9027bf75d918f (diff) |
vt: delete unneeded function unbind_con_driver
Now there is no place use unbind_con_driver,
and we can achieve unbind_con_driver's function
with do_unbind_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 | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index a422322cf8b9..164cbeff5676 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -3116,34 +3116,6 @@ static int con_is_graphics(const struct consw *csw, int first, int last) | |||
3116 | return retval; | 3116 | return retval; |
3117 | } | 3117 | } |
3118 | 3118 | ||
3119 | /** | ||
3120 | * unbind_con_driver - unbind a console driver | ||
3121 | * @csw: pointer to console driver to unregister | ||
3122 | * @first: first in range of consoles that @csw should be unbound from | ||
3123 | * @last: last in range of consoles that @csw should be unbound from | ||
3124 | * @deflt: should next bound console driver be default after @csw is unbound? | ||
3125 | * | ||
3126 | * To unbind a driver from all possible consoles, pass 0 as @first and | ||
3127 | * %MAX_NR_CONSOLES as @last. | ||
3128 | * | ||
3129 | * @deflt controls whether the console that ends up replacing @csw should be | ||
3130 | * the default console. | ||
3131 | * | ||
3132 | * RETURNS: | ||
3133 | * -ENODEV if @csw isn't a registered console driver or can't be unregistered | ||
3134 | * or 0 on success. | ||
3135 | */ | ||
3136 | int unbind_con_driver(const struct consw *csw, int first, int last, int deflt) | ||
3137 | { | ||
3138 | int retval; | ||
3139 | |||
3140 | console_lock(); | ||
3141 | retval = do_unbind_con_driver(csw, first, last, deflt); | ||
3142 | console_unlock(); | ||
3143 | return retval; | ||
3144 | } | ||
3145 | EXPORT_SYMBOL(unbind_con_driver); | ||
3146 | |||
3147 | /* unlocked version of unbind_con_driver() */ | 3119 | /* unlocked version of unbind_con_driver() */ |
3148 | int do_unbind_con_driver(const struct consw *csw, int first, int last, int deflt) | 3120 | int do_unbind_con_driver(const struct consw *csw, int first, int last, int deflt) |
3149 | { | 3121 | { |