Add WPI_DEBUG option.

PR:		kern/197143
Submitted by:	Andriy Voskoboinyk <s3erios@gmail.com>
This commit is contained in:
Adrian Chadd 2015-02-07 23:09:03 +00:00
parent ee3a7d2fb7
commit 84ac51d883
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=278365
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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>