Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 26353
b: refs/heads/master
c: ae82d5a
h: refs/heads/master
i:
  26351: 6d6fbe5
v: v3
  • Loading branch information
Imre Deak authored and Dmitry Torokhov committed Apr 26, 2006
1 parent 6b81368 commit a9e6006
Show file tree
Hide file tree
Showing 2 changed files with 5 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: c9e617a563ad646239270fa2222cdb06966cf1fa
refs/heads/master: ae82d5ab05068fccef2329f4607670f24c41606f
6 changes: 4 additions & 2 deletions trunk/drivers/input/touchscreen/ads7846.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,13 @@ static void ads7846_rx(void *ads)
if (Rt) {
input_report_abs(input_dev, ABS_X, x);
input_report_abs(input_dev, ABS_Y, y);
input_report_abs(input_dev, ABS_PRESSURE, Rt);
sync = 1;
}
if (sync)

if (sync) {
input_report_abs(input_dev, ABS_PRESSURE, Rt);
input_sync(input_dev);
}

#ifdef VERBOSE
if (Rt || ts->pendown)
Expand Down

0 comments on commit a9e6006

Please sign in to comment.