Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68f3e662 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

fix adbhid mismerge



This fixes a lost 'key' variable declaration that went missing in a
mismerge (commit b981d8b3)

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 2b0460b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;