[PATCH] HID: add support for Huion 580 tablet

2013-05-28 Thread Martin Rusko
Signed-off-by: Martin Rusko martin.ru...@gmail.com --- drivers/hid/Kconfig |6 ++ drivers/hid/Makefile|1 + drivers/hid/hid-core.c |1 + drivers/hid/hid-huion.c | 177 +++ drivers/hid/hid-ids.h |3 + 5 files changed, 188

Re: [PATCH] hid: driver for PS2/3 Buzz controllers

2013-05-28 Thread Jiri Kosina
On Mon, 27 May 2013, Colin Leitner wrote: This patch adds support for PS2/3 Buzz controllers into hid-sony Thanks, now applied. As a followup, I think I'll merge hid-ps3remote into hid-sony as well. -- Jiri Kosina SUSE Labs -- To unsubscribe from this list: send the line unsubscribe

Re: [PATCH] HID: add support for Huion 580 tablet

2013-05-28 Thread Jiri Kosina
On Tue, 28 May 2013, Martin Rusko wrote: Signed-off-by: Martin Rusko martin.ru...@gmail.com --- drivers/hid/Kconfig |6 ++ drivers/hid/Makefile|1 + drivers/hid/hid-core.c |1 + drivers/hid/hid-huion.c | 177 +++

Re: [PATCH] Bluetooth: hidp: register HID devices async

2013-05-28 Thread Jiri Kosina
On Thu, 23 May 2013, David Herrmann wrote: While l2cap_user callbacks are running, the whole hci_dev is locked. Even if we would add more fine-grained locking to HCI core, it would still be called from the non-reentrant rx work-queue and thus block the event processing. However, if we want

Re: [PATCH 0/2] Holtek gaming mouse driver, and the necessity for it instead of increasing HID_MAX_USAGES

2013-05-28 Thread Jiri Kosina
On Tue, 21 May 2013, Christian Ohm wrote: Is there any reason why HID_MAX_USAGES shouldn't be more than 12288? Well, the reasoning is a mixture of current implementation, and reasonability. - we currently have statically allocated arrays on a per-parser basis, for parsing usages and

Re: [PATCH 1/2] HID: Add driver for Holtek gaming mouse 04d9:a067

2013-05-28 Thread Jiri Kosina
On Tue, 21 May 2013, Christian Ohm wrote: This mouse is sold as Sharkoon Drakonia and Perixx MX-2000 and reports a too high usage maximum and logical maximum. This driver fixes the report descriptor so those values don't exceed HID_MAX_USAGES. Signed-off-by: Christian Ohm chr@gmx.net

Re: [PATCH] hid: driver for PS2/3 Buzz controllers

2013-05-28 Thread Bastien Nocera
On Tue, 2013-05-28 at 10:19 +0200, Jiri Kosina wrote: On Mon, 27 May 2013, Colin Leitner wrote: This patch adds support for PS2/3 Buzz controllers into hid-sony Thanks, now applied. I would have preferred it if the single device (the USB adapter) showed 4 input devices each with 5 buttons

Re: [PATCH] HID: fold ps3remote driver into generic Sony driver

2013-05-28 Thread Jiri Kosina
On Tue, 28 May 2013, David Dillow wrote: Let's follow the structure we are trying to keep for most of the specific HID drivers, and let the separation follow the producing vendor. Merge functionality provided by ps3remote driver into hid-sony. Signed-off-by: Jiri Kosina

Re: [PATCH] hid: driver for PS2/3 Buzz controllers

2013-05-28 Thread Colin Leitner
I would have preferred it if the single device (the USB adapter) showed 4 input devices each with 5 buttons and a LED, rather than a single device with 4 LEDs and 20 buttons. That's quite a good idea. Are there any existing drivers with a similiar feature? -- To unsubscribe from this list:

Re: [PATCH 1/2] HID: Add driver for Holtek gaming mouse 04d9:a067

2013-05-28 Thread Andy Shevchenko
On Tue, May 21, 2013 at 2:31 AM, Christian Ohm chr@gmx.net wrote: This mouse is sold as Sharkoon Drakonia and Perixx MX-2000 and reports a too high usage maximum and logical maximum. This driver fixes the report descriptor so those values don't exceed HID_MAX_USAGES. Patch is already