Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Jun 2021 11:24:03 GMT
From:      Dmitry Chagin <dchagin@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 195f47fdb6c8 - stable/13 - run(4): add support for DLINK DWA-130 rev F1 wireless adaptor.
Message-ID:  <202106061124.156BO3ss007008@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dchagin:

URL: https://cgit.FreeBSD.org/src/commit/?id=195f47fdb6c8fc6592b0b324e3891ba03ad58a5d

commit 195f47fdb6c8fc6592b0b324e3891ba03ad58a5d
Author:     Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2021-05-23 18:31:51 +0000
Commit:     Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2021-06-06 11:23:43 +0000

    run(4): add support for DLINK DWA-130 rev F1 wireless adaptor.
    
    PR:             256092
    Submitted by:   Francois Briere <purplefiasco at gmail.com>
    
    (cherry picked from commit 8746bc91873430d977b09bcc3fbd4d1b417a5a57)
---
 share/man/man4/run.4      | 1 +
 sys/dev/usb/usbdevs       | 1 +
 sys/dev/usb/wlan/if_run.c | 1 +
 3 files changed, 3 insertions(+)

diff --git a/share/man/man4/run.4 b/share/man/man4/run.4
index ad314ff67011..0cea7beada77 100644
--- a/share/man/man4/run.4
+++ b/share/man/man4/run.4
@@ -145,6 +145,7 @@ driver supports the following wireless adapters:
 .It Corega CG-WLUSB300AGN
 .It Corega CG-WLUSB300GNM
 .It D-Link DWA-130 rev B1
+.It D-Link DWA-130 rev F1
 .It D-Link DWA-140 rev B1, B2, B3, \&D1
 .It D-Link DWA-160 rev B2
 .It D-Link DWA-162
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs
index c2a1a9ff31e6..1239449b4697 100644
--- a/sys/dev/usb/usbdevs
+++ b/sys/dev/usb/usbdevs
@@ -1736,6 +1736,7 @@ product DLINK DWA160B2		0x3c1a	DWA-160 rev B2
 product DLINK DWA127		0x3c1b	DWA-127 Wireless Adapter
 product DLINK DWA162		0x3c1f	DWA-162 Wireless Adapter
 product DLINK DWA140D1		0x3c20	DWA-140 rev D1
+product DLINK DWA130F1		0x3c25	DWA-130 rev F1
 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 c7f0ae40f666..52933a4812dc 100644
--- a/sys/dev/usb/wlan/if_run.c
+++ b/sys/dev/usb/wlan/if_run.c
@@ -215,6 +215,7 @@ static const STRUCT_USB_HOST_ID run_devs[] = {
     RUN_DEV(DLINK,		DWA140B3),
     RUN_DEV(DLINK,		DWA160B2),
     RUN_DEV(DLINK,		DWA140D1),
+    RUN_DEV(DLINK,		DWA130F1),
     RUN_DEV(DLINK,		DWA162),
     RUN_DEV(DLINK2,		DWA130),
     RUN_DEV(DLINK2,		RT2870_1),



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106061124.156BO3ss007008>