Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 27010
b: refs/heads/master
c: d2f4012
h: refs/heads/master
v: v3
  • Loading branch information
Yotam Medini authored and Dmitry Torokhov committed May 30, 2006
1 parent b1670e3 commit 7ea87b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e107b8ee7e97fc20695ca3d5ef862511eca28df0
refs/heads/master: d2f4012f15845761bd3c6f90172e53767c11e359
4 changes: 2 additions & 2 deletions trunk/drivers/input/mouse/alps.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ static void alps_process_packet(struct psmouse *psmouse, struct pt_regs *regs)
}

if (priv->i->flags & ALPS_OLDPROTO) {
left = packet[2] & 0x08;
right = packet[2] & 0x10;
left = packet[2] & 0x10;
right = packet[2] & 0x08;
middle = 0;
x = packet[1] | ((packet[0] & 0x07) << 7);
y = packet[4] | ((packet[3] & 0x07) << 7);
Expand Down

0 comments on commit 7ea87b4

Please sign in to comment.