Skip to content

Commit

Permalink
fix adbhid mismerge
Browse files Browse the repository at this point in the history
This fixes a lost 'key' variable declaration that went missing in a
mismerge (commit b981d8b)

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Oct 17, 2007
1 parent 2b0460b commit 68f3e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/macintosh/adbhid.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ static void
adbhid_input_keycode(int id, int scancode, int repeat)
{
struct adbhid *ahid = adbhid[id];
int keycode, up_flag;
int keycode, up_flag, key;

keycode = scancode & 0x7f;
up_flag = scancode & 0x80;
Expand Down

0 comments on commit 68f3e66

Please sign in to comment.