1# $FreeBSD$ 2 3.PATH: ${SRCTOP}/sys/dev/bwn 4 5KMOD= if_bwn 6SRCS= if_bwn.c if_bwnreg.h if_bwnvar.h 7SRCS+= if_bwn_pci.c 8SRCS+= if_bwn_util.c 9 10# PHY 11SRCS+= if_bwn_phy_common.c 12SRCS+= if_bwn_phy_g.c if_bwn_phy_lp.c 13SRCS+= if_bwn_phy_n.c 14 15# BHND 16SRCS+= bhnd_bus_if.h \ 17 bhnd_chipc_if.h \ 18 bhnd_pmu_if.h \ 19 bhnd_pwrctl_if.h 20SRCS+= bhnd_nvram_map.h 21 22# BHNDB 23SRCS+= bhndb_bus_if.h \ 24 bhndb_if.h 25 26# Other 27SRCS+= device_if.h bus_if.h gpio_if.h pci_if.h opt_bwn.h opt_wlan.h 28 29# The following need the BWN_GPL_PHY kenrel option to opt-in 30# to the GPL'd 802.11n PHY support for this driver. 31.PATH: ${SRCTOP}/sys/gnu/dev/bwn/phy_n 32SRCS.BWN_GPL_PHY+= if_bwn_radio_2055.c 33SRCS.BWN_GPL_PHY+= if_bwn_radio_2056.c 34SRCS.BWN_GPL_PHY+= if_bwn_radio_2057.c 35SRCS.BWN_GPL_PHY+= if_bwn_phy_n_sprom.c 36SRCS.BWN_GPL_PHY+= if_bwn_phy_n_tables.c 37SRCS.BWN_GPL_PHY+= if_bwn_phy_n_ppr.c 38SRCS.BWN_GPL_PHY+= if_bwn_phy_n_core.c 39 40.include <bsd.kmod.mk> 41