]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
fix adbhid mismerge
authorAl Viro <viro@ftp.linux.org.uk>
Wed, 17 Oct 2007 00:02:46 +0000 (01:02 +0100)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 17 Oct 2007 02:04:49 +0000 (19:04 -0700)
This fixes a lost 'key' variable declaration that went missing in a
mismerge (commit b981d8b3f5e008ff10d993be633ad00564fc22cd)

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/macintosh/adbhid.c

index 8cce016b3d0936ce2cbdb2c2e7a348c137f7cfab..2766e4fc4ea82e36cfa7ce205076ad7f1c3cae44 100644 (file)
@@ -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;