BT Voyager 1010 code patch
Jonathan Melhuish <[email protected]>
| Newsgroups | gmane.linux.drivers.at76c503a.user |
|---|---|
| Message-ID | <[email protected]> |
Thanks guys for putting in all the effort to code this driver. I've certainly had a lot more success with this than the Sourceforge one. All that was required was to add the USB vendor/product ID into the at76c503-i3861 driver. Hotplug now seems to load the right driver and report the MAC address, etc. in the system log. I'll get the AP settings off my friend tommorow and test it out properly. I attatch the diff for the driver file; I hope you can incorporate it into future versions so that it's even easier to install. :-) Cheers, Jon
bt_voyager_patch.txt
(text/plain, 1 KB)
--- at76c503-i3861.c~ 2003-11-30 01:05:35.000000000 +0000
+++ at76c503-i3861.c 2004-05-10 22:31:20.000000000 +0100
@@ -72,6 +72,9 @@
#define VENDOR_ID_DYNALINK 0x069a
#define PRODUCT_ID_DYNALINK_WLL013_I 0x0320 /* Dynalink/Askey WLL013 (intersil) */
+#define VENDOR_ID_BT 0x069a
+#define PRODUCT_ID_BT_VOYAGER_1010 0x0821 /* BT Voyager 1010 */
+
#define VENDOR_ID_SMC 0x0d5c
#define PRODUCT_ID_SMC2662W_V1 0xa001 /* EZ connect 11Mpbs
Wireless USB Adapter SMC2662W (v1) */
@@ -101,6 +104,7 @@
{ USB_DEVICE(VENDOR_ID_HP, PRODUCT_ID_HP_HN210W ) },
{ USB_DEVICE(VENDOR_ID_M4Y750, PRODUCT_ID_M4Y750 ) },
{ USB_DEVICE(VENDOR_ID_DYNALINK, PRODUCT_ID_DYNALINK_WLL013_I ) },
+ { USB_DEVICE(VENDOR_ID_BT, PRODUCT_ID_BT_VOYAGER_1010 ) },
{ USB_DEVICE(VENDOR_ID_SMC, PRODUCT_ID_SMC2662W_V1 ) },
{ USB_DEVICE(VENDOR_ID_BENQ, PRODUCT_ID_BENQ_AWL_300 ) },
{ USB_DEVICE(VENDOR_ID_ADDTRON, PRODUCT_ID_ADDTRON_AWU120 ) },