svn commit: r278365 - in head/sys: conf modules/wpi

Adrian Chadd adrian at FreeBSD.org
Sat Feb 7 23:09:04 UTC 2015


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 <s3erios at gmail.com>

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 <bsd.kmod.mk>


More information about the svn-src-all mailing list