vt: convert last bind_con_driver call to do_bind_con_driver
authorWang YanQing <udknight@gmail.com>
Wed, 8 May 2013 18:14:21 +0000 (02:14 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 May 2013 19:27:59 +0000 (12:27 -0700)
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>
drivers/tty/vt/vt.c

index 164cbeff5676ab995e25be83a0077f1ecf6bd986..7e0953cd3f3aff851a9dc7c75f678f3dfe990e0e 100644 (file)
@@ -3236,8 +3236,11 @@ static int vt_bind(struct con_driver *con)
                if (first == 0 && last == MAX_NR_CONSOLES -1)
                        deflt = 1;
 
-               if (first != -1)
-                       bind_con_driver(csw, first, last, deflt);
+               if (first != -1) {
+                       console_lock();
+                       do_bind_con_driver(csw, first, last, deflt);
+                       console_unlock();
+               }
 
                first = -1;
                last = -1;
This page took 0.027544 seconds and 5 git commands to generate.