From: Johann Deneux <johann.deneux@it.uu.se>
To: vojtech@suse.cz
Cc: linux-joystick@atrey.karlin.mff.cuni.cz, linux-kernel@vger.kernel.org
Subject: [PATCH] Added LMP Destiny Force feedback to iforce driver
Date: Mon, 24 Oct 2005 19:44:07 +0200 [thread overview]
Message-ID: <435D1D67.9000301@it.uu.se> (raw)
[-- Attachment #1: Type: text/plain, Size: 1992 bytes --]
Adds support for "LMP Destiny Force feedback" to the iforce driver.
Signed-off-by: Johann Deneux <johann.deneux@it.uu.se>
diff -uprN -X linux-2.6.13.4-vanilla/Documentation/dontdiff
linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-main.c
linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-main.c
---
linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-main.c
2005-10-10 20:54:29.000000000 +0200
+++ linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-main.c
2005-10-24 18:38:45.000000000 +0200
@@ -79,6 +79,7 @@ static struct iforce_device iforce_devic
{ 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 }, //?
+ { 0x06b6, 0x0001, "LMP Destiny Force Feedback Wheel",
btn_wheel, abs_wheel, ff_iforce },
{ 0x0000, 0x0000, "Unknown I-Force Device [%04x:%04x]",
btn_joystick, abs_joystick, ff_iforce }
};
diff -uprN -X linux-2.6.13.4-vanilla/Documentation/dontdiff
linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-usb.c
linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-usb.c
--- linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-usb.c
2005-10-10 20:54:29.000000000 +0200
+++ linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-usb.c
2005-10-24 18:39:29.000000000 +0200
@@ -230,6 +230,7 @@ static struct usb_device_id iforce_usb_i
{ 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 */
+ { USB_DEVICE(0x06b6, 0x0001) }, /* LMP Destiny Force
Feedback Wheel */
{ } /* Terminating entry */
};
[-- Attachment #2: patch-iforce-2.6.13.4 --]
[-- Type: text/plain, Size: 1753 bytes --]
diff -uprN -X linux-2.6.13.4-vanilla/Documentation/dontdiff linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-main.c linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-main.c
--- linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-main.c 2005-10-10 20:54:29.000000000 +0200
+++ linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-main.c 2005-10-24 18:38:45.000000000 +0200
@@ -79,6 +79,7 @@ static struct iforce_device iforce_devic
{ 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 }, //?
+ { 0x06b6, 0x0001, "LMP Destiny Force Feedback Wheel", btn_wheel, abs_wheel, ff_iforce },
{ 0x0000, 0x0000, "Unknown I-Force Device [%04x:%04x]", btn_joystick, abs_joystick, ff_iforce }
};
diff -uprN -X linux-2.6.13.4-vanilla/Documentation/dontdiff linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-usb.c linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-usb.c
--- linux-2.6.13.4-vanilla/drivers/input/joystick/iforce/iforce-usb.c 2005-10-10 20:54:29.000000000 +0200
+++ linux-2.6.13.4-ff/drivers/input/joystick/iforce/iforce-usb.c 2005-10-24 18:39:29.000000000 +0200
@@ -230,6 +230,7 @@ static struct usb_device_id iforce_usb_i
{ 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 */
+ { USB_DEVICE(0x06b6, 0x0001) }, /* LMP Destiny Force Feedback Wheel */
{ } /* Terminating entry */
};
reply other threads:[~2005-10-24 17:37 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=435D1D67.9000301@it.uu.se \
--to=johann.deneux@it.uu.se \
--cc=linux-joystick@atrey.karlin.mff.cuni.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=vojtech@suse.cz \
/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.