From owner-svn-src-all@FreeBSD.ORG Sat Feb 7 23:09:04 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9FBFD42E; Sat, 7 Feb 2015 23:09:04 +0000 (UTC) Received: from svn.freebsd.org (svn.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 8B33A320; Sat, 7 Feb 2015 23:09:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t17N94w6067151; Sat, 7 Feb 2015 23:09:04 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t17N93tx067149; Sat, 7 Feb 2015 23:09:03 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201502072309.t17N93tx067149@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Sat, 7 Feb 2015 23:09:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r278365 - in head/sys: conf modules/wpi 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.18-1 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: Sat, 07 Feb 2015 23:09:04 -0000 Author: adrian Date: Sat Feb 7 23:09:03 2015 New Revision: 278365 URL: https://svnweb.freebsd.org/changeset/base/278365 Log: Add WPI_DEBUG option. PR: kern/197143 Submitted by: Andriy Voskoboinyk Modified: head/sys/conf/options head/sys/modules/wpi/Makefile Modified: head/sys/conf/options ============================================================================== --- head/sys/conf/options Sat Feb 7 21:29:17 2015 (r278364) +++ head/sys/conf/options Sat Feb 7 23:09:03 2015 (r278365) @@ -847,6 +847,9 @@ MWL_TX_NODROP opt_mwl.h # Options for the Intel 802.11n wireless driver IWN_DEBUG opt_iwn.h +# Options for the Intel 3945ABG wireless driver +WPI_DEBUG opt_wpi.h + # dcons options DCONS_BUF_SIZE opt_dcons.h DCONS_POLL_HZ opt_dcons.h Modified: head/sys/modules/wpi/Makefile ============================================================================== --- head/sys/modules/wpi/Makefile Sat Feb 7 21:29:17 2015 (r278364) +++ head/sys/modules/wpi/Makefile Sat Feb 7 23:09:03 2015 (r278365) @@ -3,6 +3,6 @@ .PATH: ${.CURDIR}/../../dev/wpi KMOD = if_wpi -SRCS = if_wpi.c device_if.h bus_if.h pci_if.h opt_wlan.h +SRCS = if_wpi.c device_if.h bus_if.h pci_if.h opt_wpi.h opt_wlan.h .include