Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 109663
b: refs/heads/master
c: a6821f3
h: refs/heads/master
i:
  109661: aeecc12
  109659: 8cfeb23
  109655: 9ced0a4
  109647: 217ea37
  109631: 286d33e
v: v3
  • Loading branch information
Henrik Rydberg authored and Dmitry Torokhov committed Sep 5, 2008
1 parent 487b85d commit 4e1b51c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 75e21e3f3bb2b4a41bb0646a4d54eef27eb36ca5
refs/heads/master: a6821f345fd508b17f5ce310b677b37aefb028dc
2 changes: 2 additions & 0 deletions trunk/drivers/input/mouse/bcm5974.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ static void setup_events_to_report(struct input_dev *input_dev,
0, cfg->y.dim, cfg->y.fuzz, 0);

__set_bit(EV_KEY, input_dev->evbit);
__set_bit(BTN_TOUCH, input_dev->keybit);
__set_bit(BTN_TOOL_FINGER, input_dev->keybit);
__set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);
__set_bit(BTN_TOOL_TRIPLETAP, input_dev->keybit);
Expand Down Expand Up @@ -320,6 +321,7 @@ static int report_tp_state(struct bcm5974 *dev, int size)
if (dev->fingers > nmax)
dev->fingers = nmax;

input_report_key(input, BTN_TOUCH, dev->fingers > 0);
input_report_key(input, BTN_TOOL_FINGER, dev->fingers == 1);
input_report_key(input, BTN_TOOL_DOUBLETAP, dev->fingers == 2);
input_report_key(input, BTN_TOOL_TRIPLETAP, dev->fingers > 2);
Expand Down

0 comments on commit 4e1b51c

Please sign in to comment.