public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH 9/9] -Wshadow: fixes for drivers/char/keyboard.c
@ 2006-07-10 11:13 Jesper Juhl
  2006-07-10 13:07 ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Jesper Juhl @ 2006-07-10 11:13 UTC (permalink / raw)
  To: linux-kernel; +Cc: jesper.juhl

(please see the mail titled 
 "[RFC][PATCH 0/9] -Wshadow: Making the kernel build clean with -Wshadow"
 for an explanation of why I'm doing this)


Fix -Wshadow warnings in drivers/char/keyboard.c :

 drivers/char/keyboard.c:269: warning: declaration of 'rep' shadows a global declaration
 drivers/char/keyboard.c:130: warning: shadowed declaration is here
 drivers/char/keyboard.c:947: warning: declaration of 'kbd' shadows a global declaration
 drivers/char/keyboard.c:109: warning: shadowed declaration is here
 drivers/char/keyboard.c:959: warning: declaration of 'kbd' shadows a global declaration
 drivers/char/keyboard.c:109: warning: shadowed declaration is here
 drivers/char/keyboard.c:1129: warning: declaration of 'down' shadows a global declaration


Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---

 drivers/char/keyboard.c |   58 +++++++++++++++++++-------------------
 1 files changed, 29 insertions(+), 29 deletions(-)

--- linux-2.6.18-rc1-orig/drivers/char/keyboard.c	2006-07-06 19:39:35.000000000 +0200
+++ linux-2.6.18-rc1/drivers/char/keyboard.c	2006-07-09 22:04:35.000000000 +0200
@@ -266,7 +266,7 @@ void kd_mksound(unsigned int hz, unsigne
  * Setting the keyboard rate.
  */
 
-int kbd_rate(struct kbd_repeat *rep)
+int kbd_rate(struct kbd_repeat *repeat)
 {
 	struct list_head *node;
 	unsigned int d = 0;
@@ -277,16 +277,16 @@ int kbd_rate(struct kbd_repeat *rep)
 		struct input_dev *dev = handle->dev;
 
 		if (test_bit(EV_REP, dev->evbit)) {
-			if (rep->delay > 0)
-				input_event(dev, EV_REP, REP_DELAY, rep->delay);
-			if (rep->period > 0)
-				input_event(dev, EV_REP, REP_PERIOD, rep->period);
+			if (repeat->delay > 0)
+				input_event(dev, EV_REP, REP_DELAY, repeat->delay);
+			if (repeat->period > 0)
+				input_event(dev, EV_REP, REP_PERIOD, repeat->period);
 			d = dev->rep[REP_DELAY];
 			p = dev->rep[REP_PERIOD];
 		}
 	}
-	rep->delay  = d;
-	rep->period = p;
+	repeat->delay  = d;
+	repeat->period = p;
 	return 0;
 }
 
@@ -944,28 +944,28 @@ unsigned char getledstate(void)
 	return ledstate;
 }
 
-void setledstate(struct kbd_struct *kbd, unsigned int led)
+void setledstate(struct kbd_struct *kbrd, unsigned int led)
 {
 	if (!(led & ~7)) {
 		ledioctl = led;
-		kbd->ledmode = LED_SHOW_IOCTL;
+		kbrd->ledmode = LED_SHOW_IOCTL;
 	} else
-		kbd->ledmode = LED_SHOW_FLAGS;
+		kbrd->ledmode = LED_SHOW_FLAGS;
 	set_leds();
 }
 
 static inline unsigned char getleds(void)
 {
-	struct kbd_struct *kbd = kbd_table + fg_console;
+	struct kbd_struct *kbrd = kbd_table + fg_console;
 	unsigned char leds;
 	int i;
 
-	if (kbd->ledmode == LED_SHOW_IOCTL)
+	if (kbrd->ledmode == LED_SHOW_IOCTL)
 		return ledioctl;
 
-	leds = kbd->ledflagstate;
+	leds = kbrd->ledflagstate;
 
-	if (kbd->ledmode == LED_SHOW_MEM) {
+	if (kbrd->ledmode == LED_SHOW_MEM) {
 		for (i = 0; i < 3; i++)
 			if (ledptrs[i].valid) {
 				if (*ledptrs[i].addr & ledptrs[i].mask)
@@ -1126,7 +1126,7 @@ static void kbd_rawcode(unsigned char da
 		put_queue(vc, data);
 }
 
-static void kbd_keycode(unsigned int keycode, int down,
+static void kbd_keycode(unsigned int keycode, int _down,
 			int hw_raw, struct pt_regs *regs)
 {
 	struct vc_data *vc = vc_cons[fg_console].d;
@@ -1145,35 +1145,35 @@ static void kbd_keycode(unsigned int key
 	kbd = kbd_table + fg_console;
 
 	if (keycode == KEY_LEFTALT || keycode == KEY_RIGHTALT)
-		sysrq_alt = down ? keycode : 0;
+		sysrq_alt = _down ? keycode : 0;
 #ifdef CONFIG_SPARC
 	if (keycode == KEY_STOP)
-		sparc_l1_a_state = down;
+		sparc_l1_a_state = _down;
 #endif
 
-	rep = (down == 2);
+	rep = (_down == 2);
 
 #ifdef CONFIG_MAC_EMUMOUSEBTN
-	if (mac_hid_mouse_emulate_buttons(1, keycode, down))
+	if (mac_hid_mouse_emulate_buttons(1, keycode, _down))
 		return;
 #endif /* CONFIG_MAC_EMUMOUSEBTN */
 
 	if ((raw_mode = (kbd->kbdmode == VC_RAW)) && !hw_raw)
-		if (emulate_raw(vc, keycode, !down << 7))
+		if (emulate_raw(vc, keycode, !_down << 7))
 			if (keycode < BTN_MISC)
 				printk(KERN_WARNING "keyboard.c: can't emulate rawmode for keycode %d\n", keycode);
 
 #ifdef CONFIG_MAGIC_SYSRQ	       /* Handle the SysRq Hack */
-	if (keycode == KEY_SYSRQ && (sysrq_down || (down == 1 && sysrq_alt))) {
+	if (keycode == KEY_SYSRQ && (sysrq_down || (_down == 1 && sysrq_alt))) {
 		if (!sysrq_down) {
-			sysrq_down = down;
+			sysrq_down = _down;
 			sysrq_alt_use = sysrq_alt;
 		}
 		return;
 	}
-	if (sysrq_down && !down && keycode == sysrq_alt_use)
+	if (sysrq_down && !_down && keycode == sysrq_alt_use)
 		sysrq_down = 0;
-	if (sysrq_down && down && !rep) {
+	if (sysrq_down && _down && !rep) {
 		handle_sysrq(kbd_sysrq_xlate[keycode], regs, tty);
 		return;
 	}
@@ -1196,16 +1196,16 @@ static void kbd_keycode(unsigned int key
 		 * which should be enough.
 		 */
 		if (keycode < 128) {
-			put_queue(vc, keycode | (!down << 7));
+			put_queue(vc, keycode | (!_down << 7));
 		} else {
-			put_queue(vc, !down << 7);
+			put_queue(vc, !_down << 7);
 			put_queue(vc, (keycode >> 7) | 0x80);
 			put_queue(vc, keycode | 0x80);
 		}
 		raw_mode = 1;
 	}
 
-	if (down)
+	if (_down)
 		set_bit(keycode, key_down);
 	else
 		clear_bit(keycode, key_down);
@@ -1241,7 +1241,7 @@ static void kbd_keycode(unsigned int key
 	type = KTYP(keysym);
 
 	if (type < 0xf0) {
-		if (down && !raw_mode)
+		if (_down && !raw_mode)
 			to_utf8(vc, keysym);
 		return;
 	}
@@ -1260,7 +1260,7 @@ static void kbd_keycode(unsigned int key
 		}
 	}
 
-	(*k_handler[type])(vc, keysym & 0xff, !down, regs);
+	(*k_handler[type])(vc, keysym & 0xff, !_down, regs);
 
 	if (type != KT_SLOCK)
 		kbd->slockstate = 0;





^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [RFC][PATCH 9/9] -Wshadow: fixes for drivers/char/keyboard.c
  2006-07-10 11:13 [RFC][PATCH 9/9] -Wshadow: fixes for drivers/char/keyboard.c Jesper Juhl
@ 2006-07-10 13:07 ` Dmitry Torokhov
  2006-07-10 13:14   ` Jesper Juhl
  0 siblings, 1 reply; 3+ messages in thread
From: Dmitry Torokhov @ 2006-07-10 13:07 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: linux-kernel

On 7/10/06, Jesper Juhl <jesper.juhl@gmail.com> wrote:
>
> -static void kbd_keycode(unsigned int keycode, int down,
> +static void kbd_keycode(unsigned int keycode, int _down,
>                        int hw_raw, struct pt_regs *regs)
>  {

I dont like the "_down" name, feels artificial. If you don't mind I'll
change it to "key_down" before applying.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [RFC][PATCH 9/9] -Wshadow: fixes for drivers/char/keyboard.c
  2006-07-10 13:07 ` Dmitry Torokhov
@ 2006-07-10 13:14   ` Jesper Juhl
  0 siblings, 0 replies; 3+ messages in thread
From: Jesper Juhl @ 2006-07-10 13:14 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-kernel

On 10/07/06, Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote:
> On 7/10/06, Jesper Juhl <jesper.juhl@gmail.com> wrote:
> >
> > -static void kbd_keycode(unsigned int keycode, int down,
> > +static void kbd_keycode(unsigned int keycode, int _down,
> >                        int hw_raw, struct pt_regs *regs)
> >  {
>
> I dont like the "_down" name, feels artificial. If you don't mind I'll
> change it to "key_down" before applying.
>
Makes sense. Thank you for that feedback.
Working out if people liked the sort of name changes I'd done was
exactely one of the reasons I posted these patches - I'll think of
better names than just prefixing with "_" for future patches.

-- 
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post  http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please      http://www.expita.com/nomime.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-07-10 13:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-10 11:13 [RFC][PATCH 9/9] -Wshadow: fixes for drivers/char/keyboard.c Jesper Juhl
2006-07-10 13:07 ` Dmitry Torokhov
2006-07-10 13:14   ` Jesper Juhl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox