<feed xmlns='http://www.w3.org/2005/Atom'>
<title>talos-op-linux/drivers/usb/input/hid-ff.c, branch master</title>
<subtitle>Talos™ II Linux sources for OpenPOWER</subtitle>
<id>https://git.raptorcs.com/git/talos-op-linux/atom?h=master</id>
<link rel='self' href='https://git.raptorcs.com/git/talos-op-linux/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/'/>
<updated>2007-04-11T08:36:02+00:00</updated>
<entry>
<title>USB HID: move usbhid code from drivers/usb/input to drivers/hid/usbhid</title>
<updated>2007-04-11T08:36:02+00:00</updated>
<author>
<name>Jiri Kosina</name>
<email>jkosina@suse.cz</email>
</author>
<published>2007-03-08T15:47:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=6db3dfefa28739e7c9c60809c3a5aef7cc088b97'/>
<id>urn:sha1:6db3dfefa28739e7c9c60809c3a5aef7cc088b97</id>
<content type='text'>
Separate usbhid code into dedicated drivers/hid/usbhid directory as
discussed previously with Greg, so that it eases maintaineance process.

Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Input: HID - add support for Logitech Formula Force EX</title>
<updated>2007-02-18T06:41:27+00:00</updated>
<author>
<name>Valentin Zagura</name>
<email>puthre@gmail.com</email>
</author>
<published>2007-02-18T06:41:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=130b1ab3f3dba350a949ae44a39c9beebddc09b9'/>
<id>urn:sha1:130b1ab3f3dba350a949ae44a39c9beebddc09b9</id>
<content type='text'>
Signed-off-by: Johann Deneux &lt;johann.deneux@gmail.com&gt;
Signed-off-by: Dmitry Torokhov &lt;dtor@mail.ru&gt;
</content>
</entry>
<entry>
<title>Merge rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6</title>
<updated>2007-02-10T06:26:32+00:00</updated>
<author>
<name>Dmitry Torokhov</name>
<email>dtor@insightbb.com</email>
</author>
<published>2007-02-10T06:26:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=b22364c8eec89e6b0c081a237f3b6348df87796f'/>
<id>urn:sha1:b22364c8eec89e6b0c081a237f3b6348df87796f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>hid: force feedback driver for PantherLord USB/PS2 2in1 Adapter</title>
<updated>2007-02-05T09:00:05+00:00</updated>
<author>
<name>Anssi Hannula</name>
<email>anssi.hannula@gmail.com</email>
</author>
<published>2007-01-11T14:51:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=20eb12790670985c8e30821218993bd260387b89'/>
<id>urn:sha1:20eb12790670985c8e30821218993bd260387b89</id>
<content type='text'>
Add a force feedback driver for PantherLord USB/PS2 2in1 Adapter,
0810:0001. The device identifies itself as "Twin USB Joystick".

Signed-off-by: Anssi Hannula &lt;anssi.hannula@gmail.com&gt;
Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;
</content>
</entry>
<entry>
<title>HID: put usb_interface instead of usb_device into hid-&gt;dev to fix udevinfo breakage</title>
<updated>2007-01-21T21:18:01+00:00</updated>
<author>
<name>Anssi Hannula</name>
<email>anssi.hannula@gmail.com</email>
</author>
<published>2007-01-19T17:28:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=be8209753b014f2d7a92b2ec3ff82db478fc86d1'/>
<id>urn:sha1:be8209753b014f2d7a92b2ec3ff82db478fc86d1</id>
<content type='text'>
The commit 4916b3a57fc94664677d439b911b8aaf86c7ec23 introduced a
hid regression between 2.6.19 and 2.6.20-rc1. The device put in
input_dev-&gt;cdev is now of type usb_device instead of usb_interface.

Before:
&gt; # readlink -f /sys/class/input/input6/event4/device
&gt; /sys/devices/pci0000:00/0000:00:10.0/usb2/2-1/2-1:1.1
After:
&gt; # readlink -f /sys/class/input/input3/event3/device
&gt; /sys/devices/pci0000:00/0000:00:10.0/usb1/1-1

This causes breakage:
&gt; # udevinfo -q all -n /dev/input/event3
&gt; P: /class/input/input3/event3
&gt; N: input/event3
&gt; S: input/by-path/pci-1-1--event-
&gt; E: ID_SERIAL=noserial
&gt; E: ID_PATH=pci-1-1-

No ID_MODEL, ID_VENDOR, ID_REVISION, ID_TYPE etc etc.

Fix this by assigning the intf-&gt;dev into hid-&gt;dev, and fixing
all the users.

Signed-off-by: Anssi Hannula &lt;anssi.hannula@gmail.com&gt;
Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;
</content>
</entry>
<entry>
<title>Input: hid-ff - add support for Logitech Momo racing wheel</title>
<updated>2007-01-18T05:43:41+00:00</updated>
<author>
<name>Jiri Slaby</name>
<email>jirislaby@gmail.com</email>
</author>
<published>2007-01-18T05:43:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=285b0b62bc8f1a3cb18ce3f2d9806f1d99736784'/>
<id>urn:sha1:285b0b62bc8f1a3cb18ce3f2d9806f1d99736784</id>
<content type='text'>
Add support for Logitech Momo racing wheel (046d:ca03) to hid force
feedback.

Signed-off-by: Jiri Slaby &lt;jirislaby@gmail.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Dmitry Torokhov &lt;dtor@mail.ru&gt;
</content>
</entry>
<entry>
<title>[PATCH] Generic HID layer - USB API</title>
<updated>2006-12-08T18:43:14+00:00</updated>
<author>
<name>Jiri Kosina</name>
<email>jkosina@suse.cz</email>
</author>
<published>2006-12-08T17:41:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=4916b3a57fc94664677d439b911b8aaf86c7ec23'/>
<id>urn:sha1:4916b3a57fc94664677d439b911b8aaf86c7ec23</id>
<content type='text'>
- 'dev' in struct hid_device changed from struct usb_device to
  struct device and fixed all the users
- renamed functions which are part of USB HID API from 'hid_*' to
  'usbhid_*'
- force feedback initialization moved from common part into USB-specific
  driver
- added usbhid.h header for USB HID API users
- removed USB-specific fields from struct hid_device and moved them
  to new usbhid_device, which is pointed to by hid_device-&gt;driver_data
- fixed all USB users to use this new structure

Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;
Signed-off-by: Marcel Holtmann &lt;marcel@holtmann.org&gt;
Cc: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>[PATCH] Generic HID layer - API</title>
<updated>2006-12-08T18:43:12+00:00</updated>
<author>
<name>Jiri Kosina</name>
<email>jkosina@suse.cz</email>
</author>
<published>2006-12-08T17:40:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=229695e51efc4ed5e04ab471c82591d0f432909d'/>
<id>urn:sha1:229695e51efc4ed5e04ab471c82591d0f432909d</id>
<content type='text'>
- fixed generic API (added neccessary EXPORT_SYMBOL, fixed hid.h to provide correct
  prototypes)
- extended hid_device with open/close/event function pointers to driver-specific
  functions
- added driver specific driver_data to hid_device

Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;
Signed-off-by: Marcel Holtmann &lt;marcel@holtmann.org&gt;
Cc: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>[PATCH] Generic HID layer - code split</title>
<updated>2006-12-08T18:43:01+00:00</updated>
<author>
<name>Jiri Kosina</name>
<email>jkosina@suse.cz</email>
</author>
<published>2006-12-08T17:40:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=dde5845a529ff753364a6d1aea61180946270bfa'/>
<id>urn:sha1:dde5845a529ff753364a6d1aea61180946270bfa</id>
<content type='text'>
The "big main" split of USB HID code into generic HID code and
USB-transport specific HID handling.

Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;
Signed-off-by: Marcel Holtmann &lt;marcel@holtmann.org&gt;
Cc: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Input: add force feedback driver for PSX-style Zeroplus devices</title>
<updated>2006-07-19T05:44:17+00:00</updated>
<author>
<name>Anssi Hannula</name>
<email>anssi.hannula@gmail.com</email>
</author>
<published>2006-07-19T05:44:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-op-linux/commit/?id=bb3caf7f438a67452f5cf4773ca1bf82260bbbad'/>
<id>urn:sha1:bb3caf7f438a67452f5cf4773ca1bf82260bbbad</id>
<content type='text'>
Signed-off-by: Anssi Hannula &lt;anssi.hannula@gmail.com&gt;
Signed-off-by: Dmitry Torokhov &lt;dtor@mail.ru&gt;
</content>
</entry>
</feed>
