diff options
author | br <br@FreeBSD.org> | 2013-09-05 10:09:24 +0000 |
---|---|---|
committer | br <br@FreeBSD.org> | 2013-09-05 10:09:24 +0000 |
commit | 71ada8a9acb20be675e9c8879ed61b743960a44f (patch) | |
tree | d776bda1f956617776fcada30effc05456ec173a | |
parent | 7f30f5be1c870382ca2617bd46a119c43d667b7a (diff) | |
download | FreeBSD-src-71ada8a9acb20be675e9c8879ed61b743960a44f.zip FreeBSD-src-71ada8a9acb20be675e9c8879ed61b743960a44f.tar.gz |
Add support for DLINK DWA-127 Wireless Adapter
Approved by: cognet (mentor)
-rw-r--r-- | sys/dev/usb/usbdevs | 1 | ||||
-rw-r--r-- | sys/dev/usb/wlan/if_run.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 3074530..e6a32ae 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1547,6 +1547,7 @@ product DLINK DWLG122 0x3c00 DWL-G122 b1 Wireless Adapter product DLINK DUBE100B1 0x3c05 DUB-E100 rev B1 product DLINK RT2870 0x3c09 RT2870 product DLINK RT3072 0x3c0a RT3072 +product DLINK DWA127 0x3c1b DWA-127 Wireless Adapter product DLINK DSB650C 0x4000 10Mbps Ethernet product DLINK DSB650TX1 0x4001 10/100 Ethernet product DLINK DSB650TX 0x4002 10/100 Ethernet diff --git a/sys/dev/usb/wlan/if_run.c b/sys/dev/usb/wlan/if_run.c index aed07a2..5b4587f 100644 --- a/sys/dev/usb/wlan/if_run.c +++ b/sys/dev/usb/wlan/if_run.c @@ -171,6 +171,7 @@ static const STRUCT_USB_HOST_ID run_devs[] = { RUN_DEV(CYBERTAN, RT2870), RUN_DEV(DLINK, RT2870), RUN_DEV(DLINK, RT3072), + RUN_DEV(DLINK, DWA127), RUN_DEV(DLINK2, DWA130), RUN_DEV(DLINK2, RT2870_1), RUN_DEV(DLINK2, RT2870_2), |