summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2004-11-11 14:29:01 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2004-11-11 14:29:01 +0000
commit3fa81e58a488fd2fedb4d90be6a9797a8dee7439 (patch)
tree997f8ae6c31055a3270a88712364bc01c8d700bb /sys
parentcd311300a82144d736f9b018bbb163021869f9db (diff)
add support for the Atmel AT76c503a (vendor/device ids, we should already
support this chip) and the Linksys WUSB11 v2.8 found by Sam Chill and Barry Dexter A. Gonzaga respectively. they both seem keen to try this driver out.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/if_atu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/usb/if_atu.c b/sys/dev/usb/if_atu.c
index e4bed69e5c7..38c607226fb 100644
--- a/sys/dev/usb/if_atu.c
+++ b/sys/dev/usb/if_atu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_atu.c,v 1.7 2004/11/11 00:35:00 deraadt Exp $ */
+/* $OpenBSD: if_atu.c,v 1.8 2004/11/11 14:29:00 dlg Exp $ */
/*
* Copyright (c) 2003, 2004
* Daan Vreeken <Danovitsch@Vitsch.net>. All rights reserved.
@@ -124,10 +124,14 @@ USB_DECLARE_DRIVER_CLASS(atu, DV_IFNET);
struct atu_type atu_devs[] = {
{ USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_BW002,
RadioRFMD, ATU_NO_QUIRK },
+ { USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_AT76C503A,
+ RadioIntersil, ATU_NO_QUIRK },
{ USB_VENDOR_LEXAR, USB_PRODUCT_LEXAR_2662WAR,
RadioRFMD, ATU_NO_QUIRK },
{ USB_VENDOR_LINKSYS2, USB_PRODUCT_LINKSYS2_WUSB11,
RadioRFMD, ATU_NO_QUIRK },
+ { USB_VENDOR_LINKSYS3, USB_PRODUCT_LINKSYS3_WUSB11V28,
+ RadioRFMD2958, ATU_NO_QUIRK },
{ USB_VENDOR_NETGEAR2, USB_PRODUCT_NETGEAR2_MA101B,
RadioRFMD, ATU_NO_QUIRK },
{ USB_VENDOR_ACERP, USB_PRODUCT_ACERP_AWL400,
@@ -141,6 +145,7 @@ struct atu_type atu_devs[] = {
/* SMC2662 V.4 */
{ USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_AT76C505A,
RadioRFMD2958_SMC, ATU_QUIRK_NO_REMAP | ATU_QUIRK_FW_DELAY },
+ /* XXX is this one right? */
{ USB_VENDOR_ATMEL, USB_PRODUCT_ATMEL_DWL120,
RadioIntersil, ATU_NO_QUIRK },
{ USB_VENDOR_ACERP, USB_PRODUCT_ACERP_AWL300,