* [PATCH] Ignore Philips IEEE802.15.4 RF Dongle in hid-core
@ 2009-08-02 20:18 Henning Glawe
2009-08-08 0:29 ` Jiri Kosina
0 siblings, 1 reply; 2+ messages in thread
From: Henning Glawe @ 2009-08-02 20:18 UTC (permalink / raw)
To: linux-input; +Cc: jkosina, linux-kernel
This usb device claims to be of HID class, but is in fact a 802.15.4
lowpan transceiver, therefore the generic HID driver cannot operate this
device. A separate driver for this device will be written for this using
the new 802.15.4 stack.
Signed-off-by: Henning Glawe <glaweh@debian.org>
---
drivers/hid/hid-core.c | 1 +
drivers/hid/hid-ids.h | 3 +++
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index 8551693..7755949 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -1618,6 +1618,7 @@ static const struct hid_device_id hid_ignore_list[] = {
{ HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0002) },
{ HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0003) },
{ HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0004) },
+ { HID_USB_DEVICE(USB_VENDOR_ID_PHILIPS, USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE) },
{ HID_USB_DEVICE(USB_VENDOR_ID_POWERCOM, USB_DEVICE_ID_POWERCOM_UPS) },
{ HID_USB_DEVICE(USB_VENDOR_ID_SOUNDGRAPH, USB_DEVICE_ID_SOUNDGRAPH_IMON_LCD) },
{ HID_USB_DEVICE(USB_VENDOR_ID_SOUNDGRAPH, USB_DEVICE_ID_SOUNDGRAPH_IMON_LCD2) },
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index 4d5ee2b..7f59854 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -359,6 +359,9 @@
#define USB_VENDOR_ID_PETALYNX 0x18b1
#define USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE 0x0037
+#define USB_VENDOR_ID_PHILIPS 0x0471
+#define USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE 0x0617
+
#define USB_VENDOR_ID_PLAYDOTCOM 0x0b43
#define USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII 0x0003
--
1.5.6.5
--
c u
henning
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Ignore Philips IEEE802.15.4 RF Dongle in hid-core
2009-08-02 20:18 [PATCH] Ignore Philips IEEE802.15.4 RF Dongle in hid-core Henning Glawe
@ 2009-08-08 0:29 ` Jiri Kosina
0 siblings, 0 replies; 2+ messages in thread
From: Jiri Kosina @ 2009-08-08 0:29 UTC (permalink / raw)
To: Henning Glawe; +Cc: linux-input, linux-kernel
On Sun, 2 Aug 2009, Henning Glawe wrote:
> This usb device claims to be of HID class, but is in fact a 802.15.4
> lowpan transceiver, therefore the generic HID driver cannot operate this
> device. A separate driver for this device will be written for this using
> the new 802.15.4 stack.
>
> Signed-off-by: Henning Glawe <glaweh@debian.org>
> ---
> drivers/hid/hid-core.c | 1 +
> drivers/hid/hid-ids.h | 3 +++
> 2 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
> index 8551693..7755949 100644
> --- a/drivers/hid/hid-core.c
> +++ b/drivers/hid/hid-core.c
> @@ -1618,6 +1618,7 @@ static const struct hid_device_id hid_ignore_list[] = {
> { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0002) },
> { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0003) },
> { HID_USB_DEVICE(USB_VENDOR_ID_PANJIT, 0x0004) },
> + { HID_USB_DEVICE(USB_VENDOR_ID_PHILIPS, USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE) },
> { HID_USB_DEVICE(USB_VENDOR_ID_POWERCOM, USB_DEVICE_ID_POWERCOM_UPS) },
> { HID_USB_DEVICE(USB_VENDOR_ID_SOUNDGRAPH, USB_DEVICE_ID_SOUNDGRAPH_IMON_LCD) },
> { HID_USB_DEVICE(USB_VENDOR_ID_SOUNDGRAPH, USB_DEVICE_ID_SOUNDGRAPH_IMON_LCD2) },
> diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
> index 4d5ee2b..7f59854 100644
> --- a/drivers/hid/hid-ids.h
> +++ b/drivers/hid/hid-ids.h
> @@ -359,6 +359,9 @@
> #define USB_VENDOR_ID_PETALYNX 0x18b1
> #define USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE 0x0037
>
> +#define USB_VENDOR_ID_PHILIPS 0x0471
> +#define USB_DEVICE_ID_PHILIPS_IEEE802154_DONGLE 0x0617
> +
> #define USB_VENDOR_ID_PLAYDOTCOM 0x0b43
> #define USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII 0x0003
Appplied, thanks Henning.
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-08-08 0:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-02 20:18 [PATCH] Ignore Philips IEEE802.15.4 RF Dongle in hid-core Henning Glawe
2009-08-08 0:29 ` Jiri Kosina
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).