From owner-svn-src-all@freebsd.org Tue Sep 29 04:56:28 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F95AA0A815; Tue, 29 Sep 2015 04:56:28 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 805DE1136; Tue, 29 Sep 2015 04:56:28 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8T4uSLk078264; Tue, 29 Sep 2015 04:56:28 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8T4uShO078262; Tue, 29 Sep 2015 04:56:28 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201509290456.t8T4uShO078262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Tue, 29 Sep 2015 04:56:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r288352 - in head/sys/modules/usb: rsu urtwn X-SVN-Group: head 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.20 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: Tue, 29 Sep 2015 04:56:28 -0000 Author: adrian Date: Tue Sep 29 04:56:27 2015 New Revision: 288352 URL: https://svnweb.freebsd.org/changeset/base/288352 Log: Add opt_wlan.h as requirements for the two drivers I'm currently working on. Modified: head/sys/modules/usb/rsu/Makefile head/sys/modules/usb/urtwn/Makefile Modified: head/sys/modules/usb/rsu/Makefile ============================================================================== --- head/sys/modules/usb/rsu/Makefile Tue Sep 29 04:47:31 2015 (r288351) +++ head/sys/modules/usb/rsu/Makefile Tue Sep 29 04:56:27 2015 (r288352) @@ -5,6 +5,6 @@ KMOD = if_rsu SRCS = if_rsu.c if_rsureg.h \ bus_if.h device_if.h \ - opt_bus.h opt_usb.h usb_if.h usbdevs.h + opt_bus.h opt_usb.h opt_wlan.h usb_if.h usbdevs.h .include Modified: head/sys/modules/usb/urtwn/Makefile ============================================================================== --- head/sys/modules/usb/urtwn/Makefile Tue Sep 29 04:47:31 2015 (r288351) +++ head/sys/modules/usb/urtwn/Makefile Tue Sep 29 04:56:27 2015 (r288352) @@ -5,6 +5,6 @@ KMOD = if_urtwn SRCS = if_urtwn.c if_urtwnreg.h \ bus_if.h device_if.h \ - opt_bus.h opt_usb.h usb_if.h usbdevs.h + opt_bus.h opt_usb.h opt_wlan.h usb_if.h usbdevs.h .include