Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 293996
b: refs/heads/master
c: 24e3e5a
h: refs/heads/master
v: v3
  • Loading branch information
Jason Gerecke authored and Dmitry Torokhov committed Mar 13, 2012
1 parent 9a7cef8 commit adc15e7
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: 7a0a1dfe9b319528ef8f681d610b8a49797ab475
refs/heads/master: 24e3e5ae1e4c2a3a32f5b1f96b4e3fd721806acd
4 changes: 2 additions & 2 deletions trunk/drivers/input/tablet/wacom_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ static int wacom_parse_logical_collection(unsigned char *report,
* data before its overwritten.
*/
features->x_phy =
(features->x_max * features->x_resolution) / 100;
(features->x_max * 100) / features->x_resolution;
features->y_phy =
(features->y_max * features->y_resolution) / 100;
(features->y_max * 100) / features->y_resolution;

features->x_max = features->y_max =
get_unaligned_le16(&report[10]);
Expand Down

0 comments on commit adc15e7

Please sign in to comment.