Commit 52ea383a authored by Jiri Slaby's avatar Jiri Slaby Committed by Greg Kroah-Hartman

tty: VT, remove unused variable

drivers/tty/vt/vt_ioctl.c:1525:2: warning: Value stored to 'kbd' is never read
kbd = kbd_table + console;
^     ~~~~~~~~~~~~~~~~~~~
Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6da9e95f
...@@ -1512,7 +1512,6 @@ long vt_compat_ioctl(struct tty_struct *tty, ...@@ -1512,7 +1512,6 @@ long vt_compat_ioctl(struct tty_struct *tty,
{ {
struct vc_data *vc = tty->driver_data; struct vc_data *vc = tty->driver_data;
struct console_font_op op; /* used in multiple places here */ struct console_font_op op; /* used in multiple places here */
struct kbd_struct *kbd;
unsigned int console; unsigned int console;
void __user *up = (void __user *)arg; void __user *up = (void __user *)arg;
int perm; int perm;
...@@ -1535,7 +1534,6 @@ long vt_compat_ioctl(struct tty_struct *tty, ...@@ -1535,7 +1534,6 @@ long vt_compat_ioctl(struct tty_struct *tty,
if (current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG)) if (current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG))
perm = 1; perm = 1;
kbd = kbd_table + console;
switch (cmd) { switch (cmd) {
/* /*
* these need special handlers for incompatible data structures * these need special handlers for incompatible data structures
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment