diff options
author | Sergey Belyashov <Sergey.Belyashov@gmail.com> | 2009-05-04 13:01:02 +0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-05-13 11:42:11 +0200 |
commit | 92e0d896ce3087112602449efd87c6d7f4eae8d0 (patch) | |
tree | 4b8841b6696bfdffadbb94bafdb66c86b0e758a4 /drivers | |
parent | a4f1cb9f3c42e5d278b0678ed5225d9331a8dcff (diff) | |
download | linux-3.10-92e0d896ce3087112602449efd87c6d7f4eae8d0.tar.gz linux-3.10-92e0d896ce3087112602449efd87c6d7f4eae8d0.tar.bz2 linux-3.10-92e0d896ce3087112602449efd87c6d7f4eae8d0.zip |
HID: autocentering support for Logitech G25 Racing Wheel
Some months ago I send patch which adds autocentering for Logitech MOMO Wheel.
Now I have access to Logitech G25 Racing Wheel and test autocentering for it. I
write patch for current kernel to support autocentering for G25 in legacy mode
(this device supports other modes, but after switching device reconnects with
ID 0xc299 and FF support comes out) and others Logitech (Driving Force,
Formula Force Ex etc) wheels with ID 046d:c294.
Signed-off-by: Sergey Belyashov <Sergey.Belyashov@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/hid/hid-lgff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-lgff.c b/drivers/hid/hid-lgff.c index 51aff08e10c..9735be6ee4f 100644 --- a/drivers/hid/hid-lgff.c +++ b/drivers/hid/hid-lgff.c @@ -61,7 +61,7 @@ static const struct dev_type devices[] = { { 0x046d, 0xc219, ff_rumble }, { 0x046d, 0xc283, ff_joystick }, { 0x046d, 0xc286, ff_joystick }, - { 0x046d, 0xc294, ff_joystick }, + { 0x046d, 0xc294, ff_wheel }, { 0x046d, 0xc295, ff_joystick }, { 0x046d, 0xca03, ff_wheel }, }; |