mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
* Break out the 'g' phy code; * Break out the debugging bits into a separate source file, since some debugging prints are done in the phy code; * Make some more chip methods in if_bwn.c public. This brings the size of if_bwn.c down to 6,805 lines which is now approaching managable.
15 lines
431 B
Makefile
15 lines
431 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/bwn
|
|
|
|
KMOD= if_bwn
|
|
SRCS= if_bwn.c if_bwnreg.h if_bwnvar.h
|
|
SRCS+= if_bwn_phy_g.c if_bwn_phy_lp.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
# XXX Work around clang warning, until maintainer approves fix.
|
|
CWARNFLAGS.if_bwn.c= ${NO_WSOMETIMES_UNINITIALIZED}
|
|
CWARNFLAGS.if_bwn_phy_g.c= ${NO_WSOMETIMES_UNINITIALIZED}
|
|
CWARNFLAGS.if_bwn_phy_lp.c= ${NO_WSOMETIMES_UNINITIALIZED}
|