From owner-svn-src-all@freebsd.org Wed Jul 11 02:32:08 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D688C1025130; Wed, 11 Jul 2018 02:32:07 +0000 (UTC) (envelope-from bwidawsk@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 85A9777AAB; Wed, 11 Jul 2018 02:32:07 +0000 (UTC) (envelope-from bwidawsk@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4CDAE4BDA; Wed, 11 Jul 2018 02:32:07 +0000 (UTC) (envelope-from bwidawsk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6B2W77I077096; Wed, 11 Jul 2018 02:32:07 GMT (envelope-from bwidawsk@FreeBSD.org) Received: (from bwidawsk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6B2W6Kn077093; Wed, 11 Jul 2018 02:32:06 GMT (envelope-from bwidawsk@FreeBSD.org) Message-Id: <201807110232.w6B2W6Kn077093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bwidawsk set sender to bwidawsk@FreeBSD.org using -f From: Ben Widawsky Date: Wed, 11 Jul 2018 02:32:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336187 - in head: share/man/man4 sys/dev/usb sys/dev/usb/wlan X-SVN-Group: head X-SVN-Commit-Author: bwidawsk X-SVN-Commit-Paths: in head: share/man/man4 sys/dev/usb sys/dev/usb/wlan X-SVN-Commit-Revision: 336187 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jul 2018 02:32:08 -0000 Author: bwidawsk Date: Wed Jul 11 02:32:06 2018 New Revision: 336187 URL: https://svnweb.freebsd.org/changeset/base/336187 Log: 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 Modified: head/share/man/man4/run.4 head/sys/dev/usb/usbdevs head/sys/dev/usb/wlan/if_run.c Modified: head/share/man/man4/run.4 ============================================================================== --- head/share/man/man4/run.4 Wed Jul 11 02:09:11 2018 (r336186) +++ head/share/man/man4/run.4 Wed Jul 11 02:32:06 2018 (r336187) @@ -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 Modified: head/sys/dev/usb/usbdevs ============================================================================== --- head/sys/dev/usb/usbdevs Wed Jul 11 02:09:11 2018 (r336186) +++ head/sys/dev/usb/usbdevs Wed Jul 11 02:32:06 2018 (r336187) @@ -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 Modified: head/sys/dev/usb/wlan/if_run.c ============================================================================== --- head/sys/dev/usb/wlan/if_run.c Wed Jul 11 02:09:11 2018 (r336186) +++ head/sys/dev/usb/wlan/if_run.c Wed Jul 11 02:32:06 2018 (r336187) @@ -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),