diff options
author | Anssi Hannula <anssi.hannula@gmail.com> | 2007-09-19 14:13:20 (GMT) |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2007-10-14 11:40:01 (GMT) |
commit | 5edc41ee8717ef44f6f96347000c8f2c825c823e (patch) | |
tree | 7e9e1d09b98fa0fd8418f2cef2d0f0e52b53b928 /drivers/hid/usbhid/hid-ff.c | |
parent | d500d11615db64b99c24f92c07427879581fde4b (diff) | |
download | linux-fsl-qoriq-5edc41ee8717ef44f6f96347000c8f2c825c823e.tar.xz |
HID: use hid-plff driver for GreenAsia 0e8f:0003 devices
Add 0e8f:0003 into the list of devices supported by the hid-plff
force feedback driver. These devices identify themselves as
"GreenAsia Inc. USB Joystick " and can be either adapters or
actual game controllers. The testing was done with a Köng Gaming
gamepad.
Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/usbhid/hid-ff.c')
-rw-r--r-- | drivers/hid/usbhid/hid-ff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hid/usbhid/hid-ff.c b/drivers/hid/usbhid/hid-ff.c index 5dacd8e..22329fe 100644 --- a/drivers/hid/usbhid/hid-ff.c +++ b/drivers/hid/usbhid/hid-ff.c @@ -62,7 +62,8 @@ static struct hid_ff_initializer inits[] = { { 0x46d, 0xca03, hid_lgff_init }, /* Logitech MOMO force wheel */ #endif #ifdef CONFIG_PANTHERLORD_FF - { 0x810, 0x0001, hid_plff_init }, + { 0x810, 0x0001, hid_plff_init }, /* "Twin USB Joystick" */ + { 0xe8f, 0x0003, hid_plff_init }, /* "GreenAsia Inc. USB Joystick " */ #endif #ifdef CONFIG_THRUSTMASTER_FF { 0x44f, 0xb300, hid_tmff_init }, |