diff options
author | Alan Cox <alan@linux.intel.com> | 2012-03-02 10:00:02 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-03-08 14:11:39 -0500 |
commit | 5289475d1375017ab4288b276383e9684280876d (patch) | |
tree | 9efb9bfccfb9b008bc1c9f2e5c89af8b26d57fc8 /drivers/tty/vt/vt.c | |
parent | 99cceb4e50cb67720e779f6611476bcb611af6b8 (diff) |
vt: tackle the main part of the selection logic
We leave the existing paste mess alone and just fix up the vt side of
things.
Signed-off-by: Alan Cox <alan@linux.intel.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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index ab7385e526af..e5abceacc2d0 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -2623,7 +2623,9 @@ int tioclinux(struct tty_struct *tty, unsigned long arg) | |||
2623 | console_unlock(); | 2623 | console_unlock(); |
2624 | break; | 2624 | break; |
2625 | case TIOCL_SELLOADLUT: | 2625 | case TIOCL_SELLOADLUT: |
2626 | console_lock(); | ||
2626 | ret = sel_loadlut(p); | 2627 | ret = sel_loadlut(p); |
2628 | console_unlock(); | ||
2627 | break; | 2629 | break; |
2628 | case TIOCL_GETSHIFTSTATE: | 2630 | case TIOCL_GETSHIFTSTATE: |
2629 | 2631 | ||