]> git.baikalelectronics.ru Git - kernel.git/commit
tty/vt/keyboard: Resolve many shadow warnings
authorMark Rustad <mark.d.rustad@intel.com>
Sat, 6 Sep 2014 01:57:57 +0000 (18:57 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Sep 2014 23:30:43 +0000 (16:30 -0700)
commit1f7800b3baa410e85ae508417c42d7978ebf265c
tree365be992b9269c983345575c829057249bdfe372
parent229806855612757bfc913868fa2021460bc288e4
tty/vt/keyboard: Resolve many shadow warnings

Many local variables were given the same name as a global. This
is valid, but generates many shadow warnings in W=2 builds. Resolve
them by changing the local names. Also change local variables
named "up" because they shadow the semaphore "up" function. Also
moved the outer declaration of the variable "a" because it is
only used in one block, and that resolves all of the shadow warnings
for the other declarations of "a" that have different types.

Change diacr => dia, kbd => kb, rep => rpt, up => udp.

Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/vt/keyboard.c