From 2c6d9edb2c0d613c8825829cbdc40bb82baa8449 Mon Sep 17 00:00:00 2001 From: Ben Widawsky Date: Wed, 11 Jul 2018 02:32:06 +0000 Subject: [PATCH] run(4): Add a new USB device ID. Summary: Add the device id of the Panda Wireless PAU06 which seems to be the already-supported combination of RT5392 MAC and RF RT5372 radio. Reviewed By: allanjude, eadler, jhb Approved By: jhb Differential Revision: https://reviews.freebsd.org/D16211 --- share/man/man4/run.4 | 3 ++- sys/dev/usb/usbdevs | 1 + sys/dev/usb/wlan/if_run.c | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/share/man/man4/run.4 b/share/man/man4/run.4 index 7d97f1cd772d..e72b516fed00 100644 --- a/share/man/man4/run.4 +++ b/share/man/man4/run.4 @@ -16,7 +16,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 19, 2015 +.Dd July 10, 2018 .Dt RUN 4 .Os .Sh NAME @@ -164,6 +164,7 @@ driver supports the following wireless adapters: .It Linksys WUSB600N .It Logitec LAN-W150N/U2 .It Mvix Nubbin MS-811N +.It Panda Wireless PAU06 .It Planex GW-USMicroN .It Planex GW-US300MiniS .It Sitecom WL-182 diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index cdeb89bd9959..6839f202b7af 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -3900,6 +3900,7 @@ product RALINK RT3370 0x3370 RT3370 product RALINK RT3572 0x3572 RT3572 product RALINK RT3573 0x3573 RT3573 product RALINK RT5370 0x5370 RT5370 +product RALINK RT5372 0x5372 RT5372 product RALINK RT5572 0x5572 RT5572 product RALINK RT8070 0x8070 RT8070 product RALINK RT2570_3 0x9020 RT2500USB Wireless Adapter diff --git a/sys/dev/usb/wlan/if_run.c b/sys/dev/usb/wlan/if_run.c index 97f8ce3b0789..95269d371ada 100644 --- a/sys/dev/usb/wlan/if_run.c +++ b/sys/dev/usb/wlan/if_run.c @@ -301,6 +301,7 @@ static const STRUCT_USB_HOST_ID run_devs[] = { RUN_DEV(RALINK, RT3572), RUN_DEV(RALINK, RT3573), RUN_DEV(RALINK, RT5370), + RUN_DEV(RALINK, RT5372), RUN_DEV(RALINK, RT5572), RUN_DEV(RALINK, RT8070), RUN_DEV(SAMSUNG, WIS09ABGN),