Browse Source

HID: prodikeys: remove unused variable

'key' is set but never used in the first loop. So remove the set.

And indent the re-set of pm->last_key properly.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Jiri Slaby 10 years ago
parent
commit
c6f2104caa
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/hid/hid-prodikeys.c

+ 1 - 2
drivers/hid/hid-prodikeys.c

@@ -395,11 +395,10 @@ static int pcmidi_handle_report4(struct pcmidi_snd *pm, u8 *data)
 
 
 	/* break keys */
 	/* break keys */
 	for (bit_index = 0; bit_index < 24; bit_index++) {
 	for (bit_index = 0; bit_index < 24; bit_index++) {
-		key = pm->last_key[bit_index];
 		if (!((0x01 << bit_index) & bit_mask)) {
 		if (!((0x01 << bit_index) & bit_mask)) {
 			input_event(pm->input_ep82, EV_KEY,
 			input_event(pm->input_ep82, EV_KEY,
 				pm->last_key[bit_index], 0);
 				pm->last_key[bit_index], 0);
-				pm->last_key[bit_index] = 0;
+			pm->last_key[bit_index] = 0;
 		}
 		}
 	}
 	}