diff options
author | Wang YanQing <udknight@gmail.com> | 2013-05-08 14:14:21 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-20 15:27:59 -0400 |
commit | c62a1e57e49d956fe45ee49197ba3bd5763c87ab (patch) | |
tree | 49ff6333bc449aa1a3cffa92568e8b30c33581bc /drivers/tty/vt/vt.c | |
parent | c1f5e38a5d3583b877619f95a922b607966dfc2e (diff) |
vt: convert last bind_con_driver call to do_bind_con_driver
There is only one place use bind_con_driver now, this patch
convert it to do_bind_con_driver too, then we can delete
bind_con_driver whos function can be replaced by do_bind_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 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 164cbeff5676..7e0953cd3f3a 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -3236,8 +3236,11 @@ static int vt_bind(struct con_driver *con) | |||
3236 | if (first == 0 && last == MAX_NR_CONSOLES -1) | 3236 | if (first == 0 && last == MAX_NR_CONSOLES -1) |
3237 | deflt = 1; | 3237 | deflt = 1; |
3238 | 3238 | ||
3239 | if (first != -1) | 3239 | if (first != -1) { |
3240 | bind_con_driver(csw, first, last, deflt); | 3240 | console_lock(); |
3241 | do_bind_con_driver(csw, first, last, deflt); | ||
3242 | console_unlock(); | ||
3243 | } | ||
3241 | 3244 | ||
3242 | first = -1; | 3245 | first = -1; |
3243 | last = -1; | 3246 | last = -1; |