[PATCH] fix adbhid mismerge

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Linus Torvalds <torvalds@...>
Cc: <linux-kernel@...>
Date: Tuesday, October 16, 2007 - 8:02 pm

Something really odd has happened: the last couple of changesets
have
-       int up_flag;
+       int keycode, up_flag;
and
-       int up_flag;
+       int up_flag, key;
in another, both in adb_input_keycode().  Even with -m passed to
git-whatchanged there's no sign of anything in that area.

Aside of trivial conflict resolution (see below), what's the right
way to trace the things like that?  Linus?

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
diff --git a/drivers/macintosh/adbhid.c b/drivers/macintosh/adbhid.c
index 8cce016..2766e4f 100644
--- a/drivers/macintosh/adbhid.c
+++ b/drivers/macintosh/adbhid.c
@@ -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;
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] fix adbhid mismerge, Al Viro, (Tue Oct 16, 8:02 pm)
Re: [PATCH] fix adbhid mismerge, Linus Torvalds, (Tue Oct 16, 9:21 pm)
Re: [PATCH] fix adbhid mismerge, Linus Torvalds, (Tue Oct 16, 10:21 pm)
Re: [PATCH] fix adbhid mismerge, Björn, (Wed Oct 17, 12:18 pm)
Re: [PATCH] fix adbhid mismerge, Björn, (Wed Oct 17, 2:28 pm)