From: "Henrik Rydberg" <rydberg@euromail.se>
To: Jiri Kosina <jkosina@suse.cz>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>,
Philipp Merkel <mail@philmerk.de>,
Stephane Chatty <chatty@enac.fr>,
linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
Henrik Rydberg <rydberg@euromail.se>
Subject: [PATCH 3/7] hid: egalax: Correct for device resolution report error (rev2)
Date: Mon, 29 Nov 2010 08:43:28 +0100 [thread overview]
Message-ID: <1291016612-25102-4-git-send-email-rydberg@euromail.se> (raw)
In-Reply-To: <1291016612-25102-1-git-send-email-rydberg@euromail.se>
The firmware of both supported devices report a X/Y maximum of 4095,
whereas in reality, it is eight times larger. Fixed with this patch.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
---
drivers/hid/hid-egalax.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/hid/hid-egalax.c b/drivers/hid/hid-egalax.c
index 6fbb4e0..b3a1139 100644
--- a/drivers/hid/hid-egalax.c
+++ b/drivers/hid/hid-egalax.c
@@ -54,6 +54,7 @@ static int egalax_input_mapping(struct hid_device *hdev, struct hid_input *hi,
case HID_UP_GENDESK:
switch (usage->hid) {
case HID_GD_X:
+ field->logical_maximum = 32760;
hid_map_usage(hi, usage, bit, max,
EV_ABS, ABS_MT_POSITION_X);
set_abs(input, ABS_MT_POSITION_X, field, 0);
@@ -61,6 +62,7 @@ static int egalax_input_mapping(struct hid_device *hdev, struct hid_input *hi,
set_abs(input, ABS_X, field, 0);
return 1;
case HID_GD_Y:
+ field->logical_maximum = 32760;
hid_map_usage(hi, usage, bit, max,
EV_ABS, ABS_MT_POSITION_Y);
set_abs(input, ABS_MT_POSITION_Y, field, 0);
--
1.7.1
next prev parent reply other threads:[~2010-11-29 7:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-29 7:43 [PATCH 0/7] hid: egalax: Rework to include Joojoo and Wetab support Henrik Rydberg
2010-11-29 7:43 ` [PATCH 1/7] hid: egalax: Use kzalloc Henrik Rydberg
2010-11-29 7:43 ` [PATCH 2/7] hid: egalax: Setup input device manually (rev2) Henrik Rydberg
2010-11-29 7:43 ` Henrik Rydberg [this message]
2010-11-29 7:43 ` [PATCH 4/7] hid: egalax: Report zero as minimum pressure (rev2) Henrik Rydberg
2010-11-29 7:43 ` [PATCH 5/7] hid: egalax: Add event filtering (rev3) Henrik Rydberg
2010-11-29 7:43 ` [PATCH 6/7] hid: egalax: Convert to MT slots (rev2) Henrik Rydberg
2010-11-29 7:43 ` [PATCH 7/7] hid: egalax: Add support for Wetab Henrik Rydberg
2010-11-29 11:50 ` [PATCH 0/7] hid: egalax: Rework to include Joojoo and Wetab support Jiri Kosina
2010-11-29 13:41 ` Henrik Rydberg
2010-11-30 16:58 ` Jiri Kosina
2010-11-30 9:08 ` Dmitry Torokhov
2010-11-30 9:51 ` Henrik Rydberg
2010-11-30 14:24 ` Jiri Kosina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1291016612-25102-4-git-send-email-rydberg@euromail.se \
--to=rydberg@euromail.se \
--cc=chatty@enac.fr \
--cc=dmitry.torokhov@gmail.com \
--cc=jkosina@suse.cz \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mail@philmerk.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.