diff options
author | Dennis O'Brien <dennis.obrien@eqware.net> | 2015-05-31 12:19:59 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-06-01 08:44:08 -0400 |
commit | 0317a65b94770c953480970f67db0a716778c6a7 (patch) | |
tree | 4f957ecf4b654bbc3af57ab9e7f350a440abfb1c /drivers/usb/misc/ldusb.c | |
parent | b721260085533a9bead1fd853c0aead7d82ce763 (diff) |
usb, HID: Remove Vernier devices from lsusb and hid_ignore_list
Removes Vernier Software & Technology devices from the ldusb
driver and the hid_ignore_list table of the usbhid driver in the
Linux tree. These devices will now be supported via the hidraw
driver.
A user space driver for these devices will be found in the
Go! Software Development Kit from Vernier at
http://www.vernier.com/downloads/software-development-kits/go-sdk/.
These devices are also be supported by the LabQuest2 standalone
interface shown at http://www.vernier.com/products/interfaces/labq2/
and the LoggerPro for Linux software shown at
http://www.vernier.com/downloads/logger-pro-linux/.
Signed-off-by: Dennis O'Brien <dennis.obrien@eqware.net>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/usb/misc/ldusb.c')
-rw-r--r-- | drivers/usb/misc/ldusb.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/usb/misc/ldusb.c b/drivers/usb/misc/ldusb.c index 82503a7ff6c8..cce22ff1c2eb 100644 --- a/drivers/usb/misc/ldusb.c +++ b/drivers/usb/misc/ldusb.c | |||
@@ -69,12 +69,6 @@ | |||
69 | #define USB_DEVICE_ID_LD_HYBRID 0x2090 /* USB Product ID of Automotive Hybrid */ | 69 | #define USB_DEVICE_ID_LD_HYBRID 0x2090 /* USB Product ID of Automotive Hybrid */ |
70 | #define USB_DEVICE_ID_LD_HEATCONTROL 0x20A0 /* USB Product ID of Heat control */ | 70 | #define USB_DEVICE_ID_LD_HEATCONTROL 0x20A0 /* USB Product ID of Heat control */ |
71 | 71 | ||
72 | #define USB_VENDOR_ID_VERNIER 0x08f7 | ||
73 | #define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002 | ||
74 | #define USB_DEVICE_ID_VERNIER_SKIP 0x0003 | ||
75 | #define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004 | ||
76 | #define USB_DEVICE_ID_VERNIER_LCSPEC 0x0006 | ||
77 | |||
78 | #ifdef CONFIG_USB_DYNAMIC_MINORS | 72 | #ifdef CONFIG_USB_DYNAMIC_MINORS |
79 | #define USB_LD_MINOR_BASE 0 | 73 | #define USB_LD_MINOR_BASE 0 |
80 | #else | 74 | #else |
@@ -115,10 +109,6 @@ static const struct usb_device_id ld_usb_table[] = { | |||
115 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) }, | 109 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MCT) }, |
116 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) }, | 110 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HYBRID) }, |
117 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) }, | 111 | { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_HEATCONTROL) }, |
118 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP) }, | ||
119 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP) }, | ||
120 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS) }, | ||
121 | { USB_DEVICE(USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LCSPEC) }, | ||
122 | { } /* Terminating entry */ | 112 | { } /* Terminating entry */ |
123 | }; | 113 | }; |
124 | MODULE_DEVICE_TABLE(usb, ld_usb_table); | 114 | MODULE_DEVICE_TABLE(usb, ld_usb_table); |