2b323c51a9
* This adds iwm_mvm_rm_sta(), which will be used to tear down firmware state for better/cleaner iwm_newstate() handling. * Makes iwm_enable_txq() and iwm_mvm_flush_tx_path() non-static, add the declarations to if_iwm_util.h for now. Obtained from: dragonflybsd.git 85d1c6190c4c3564b1a347f253e823aa95c202b2
18 lines
468 B
Makefile
18 lines
468 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/iwm
|
|
|
|
KMOD= if_iwm
|
|
# Main driver
|
|
SRCS= if_iwm.c if_iwm_binding.c if_iwm_util.c if_iwm_phy_db.c
|
|
SRCS+= if_iwm_mac_ctxt.c if_iwm_phy_ctxt.c if_iwm_time_event.c
|
|
SRCS+= if_iwm_power.c if_iwm_scan.c if_iwm_led.c if_iwm_notif_wait.c
|
|
SRCS+= if_iwm_7000.c if_iwm_8000.c if_iwm_fw.c if_iwm_sta.c
|
|
# bus layer
|
|
SRCS+= if_iwm_pcie_trans.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h opt_wlan.h opt_iwm.h
|
|
|
|
CFLAGS+= -DIWM_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|