linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Input: iforce -- add support for ACT LABS forceRS
@ 2009-08-17 15:20 Jiri Kosina
       [not found] ` <6cefefac0908171250v6276d5te7e866b5bc5c60b2@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Jiri Kosina @ 2009-08-17 15:20 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input, cmd_, johann.deneux

From: Jiri Kosina <jkosina@suse.cz>
Subject: [PATCH] Input: iforce -- add support for ACT LABS forceRS

Add support for ACT LABS forceRS.

Reported-by: cmd_ <cemede@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

--- 

 drivers/input/joystick/iforce/iforce-main.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/input/joystick/iforce/iforce-main.c b/drivers/input/joystick/iforce/iforce-main.c
index baabf83..da77f4e 100644
--- a/drivers/input/joystick/iforce/iforce-main.c
+++ b/drivers/input/joystick/iforce/iforce-main.c
@@ -74,6 +74,7 @@ static struct iforce_device iforce_device[] = {
 	{ 0x05ef, 0x8884, "AVB Mag Turbo Force",			btn_avb_wheel, abs_wheel, ff_iforce },
 	{ 0x05ef, 0x8888, "AVB Top Shot Force Feedback Racing Wheel",	btn_avb_tw, abs_wheel, ff_iforce }, //?
 	{ 0x061c, 0xc0a4, "ACT LABS Force RS",                          btn_wheel, abs_wheel, ff_iforce }, //?
+	{ 0x061c, 0xc084, "ACT LABS forceRS",				btn_wheel, abs_wheel, ff_iforce },
 	{ 0x06f8, 0x0001, "Guillemot Race Leader Force Feedback",	btn_wheel, abs_wheel, ff_iforce }, //?
 	{ 0x06f8, 0x0004, "Guillemot Force Feedback Racing Wheel",	btn_wheel, abs_wheel, ff_iforce }, //?
 	{ 0x06f8, 0x0004, "Gullemot Jet Leader 3D",			btn_joystick, abs_joystick, ff_iforce }, //?

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Input: iforce -- add support for ACT LABS forceRS
       [not found] ` <6cefefac0908171250v6276d5te7e866b5bc5c60b2@mail.gmail.com>
@ 2009-08-17 20:48   ` Jiri Kosina
  2009-08-18  5:26     ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Jiri Kosina @ 2009-08-17 20:48 UTC (permalink / raw)
  To: cmd_, Dmitry Torokhov; +Cc: linux-input, johann.deneux

[-- Attachment #1: Type: TEXT/PLAIN, Size: 2129 bytes --]

On Mon, 17 Aug 2009, cmd_ wrote:

> Patch does not work as-is for me.
[ ... ]
> This was a mistype from my 1st e-mail, sorry.

Thanks, corrected one below.



From: Jiri Kosina <jkosina@suse.cz>
Subject: [PATCH] Input: iforce -- add support for ACT LABS forceRS

Add support for ACT LABS forceRS.

Reported-by: cmd_ <cemede@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>


diff --git a/drivers/input/joystick/iforce/iforce-main.c b/drivers/input/joystick/iforce/iforce-main.c
index baabf83..f6c688c 100644
--- a/drivers/input/joystick/iforce/iforce-main.c
+++ b/drivers/input/joystick/iforce/iforce-main.c
@@ -74,6 +74,7 @@ static struct iforce_device iforce_device[] = {
 	{ 0x05ef, 0x8884, "AVB Mag Turbo Force",			btn_avb_wheel, abs_wheel, ff_iforce },
 	{ 0x05ef, 0x8888, "AVB Top Shot Force Feedback Racing Wheel",	btn_avb_tw, abs_wheel, ff_iforce }, //?
 	{ 0x061c, 0xc0a4, "ACT LABS Force RS",                          btn_wheel, abs_wheel, ff_iforce }, //?
+	{ 0x061c, 0xc084, "ACT LABS Force RS",				btn_wheel, abs_wheel, ff_iforce },
 	{ 0x06f8, 0x0001, "Guillemot Race Leader Force Feedback",	btn_wheel, abs_wheel, ff_iforce }, //?
 	{ 0x06f8, 0x0004, "Guillemot Force Feedback Racing Wheel",	btn_wheel, abs_wheel, ff_iforce }, //?
 	{ 0x06f8, 0x0004, "Gullemot Jet Leader 3D",			btn_joystick, abs_joystick, ff_iforce }, //?
diff --git a/drivers/input/joystick/iforce/iforce-usb.c b/drivers/input/joystick/iforce/iforce-usb.c
index f83185a..9f289d8 100644
--- a/drivers/input/joystick/iforce/iforce-usb.c
+++ b/drivers/input/joystick/iforce/iforce-usb.c
@@ -223,6 +223,7 @@ static struct usb_device_id iforce_usb_ids [] = {
 	{ USB_DEVICE(0x05ef, 0x8884) },		/* AVB Mag Turbo Force */
 	{ USB_DEVICE(0x05ef, 0x8888) },		/* AVB Top Shot FFB Racing Wheel */
 	{ USB_DEVICE(0x061c, 0xc0a4) },         /* ACT LABS Force RS */
+	{ USB_DEVICE(0x061c, 0xc084) },         /* ACT LABS Force RS */
 	{ USB_DEVICE(0x06f8, 0x0001) },		/* Guillemot Race Leader Force Feedback */
 	{ USB_DEVICE(0x06f8, 0x0004) },		/* Guillemot Force Feedback Racing Wheel */
 	{ USB_DEVICE(0x06f8, 0xa302) },		/* Guillemot Jet Leader 3D */

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Input: iforce -- add support for ACT LABS forceRS
  2009-08-17 20:48   ` Jiri Kosina
@ 2009-08-18  5:26     ` Dmitry Torokhov
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2009-08-18  5:26 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: cmd_, linux-input, johann.deneux

On Mon, Aug 17, 2009 at 10:48:36PM +0200, Jiri Kosina wrote:
> On Mon, 17 Aug 2009, cmd_ wrote:
> 
> > Patch does not work as-is for me.
> [ ... ]
> > This was a mistype from my 1st e-mail, sorry.
> 
> Thanks, corrected one below.
> 

Applied, thank you Jiri.

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-08-18  5:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-17 15:20 [PATCH] Input: iforce -- add support for ACT LABS forceRS Jiri Kosina
     [not found] ` <6cefefac0908171250v6276d5te7e866b5bc5c60b2@mail.gmail.com>
2009-08-17 20:48   ` Jiri Kosina
2009-08-18  5:26     ` Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).