mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 16:46:49 +07:00
a1175124f3
All the ICT ISR code is iwlagn specific, and doesn't need to be in iwlcore. So create a new iwl-agn.h header file that will hold agn specific function declarations etc., and move the ICT code into a new iwl-agn-ict.c file that is linked into iwlagn. This also gets rid of exporting those symbols. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
24 lines
754 B
Makefile
24 lines
754 B
Makefile
obj-$(CONFIG_IWLWIFI) += iwlcore.o
|
|
iwlcore-objs := iwl-core.o iwl-eeprom.o iwl-hcmd.o iwl-power.o
|
|
iwlcore-objs += iwl-rx.o iwl-tx.o iwl-sta.o iwl-calib.o
|
|
iwlcore-objs += iwl-scan.o iwl-led.o
|
|
iwlcore-$(CONFIG_IWLWIFI_DEBUGFS) += iwl-debugfs.o
|
|
iwlcore-$(CONFIG_IWLWIFI_DEVICE_TRACING) += iwl-devtrace.o
|
|
|
|
CFLAGS_iwl-devtrace.o := -I$(src)
|
|
|
|
# AGN
|
|
obj-$(CONFIG_IWLAGN) += iwlagn.o
|
|
iwlagn-objs := iwl-agn.o iwl-agn-rs.o iwl-agn-led.o iwl-agn-ict.o
|
|
|
|
iwlagn-$(CONFIG_IWL4965) += iwl-4965.o
|
|
iwlagn-$(CONFIG_IWL5000) += iwl-5000.o
|
|
iwlagn-$(CONFIG_IWL5000) += iwl-6000.o
|
|
iwlagn-$(CONFIG_IWL5000) += iwl-1000.o
|
|
|
|
# 3945
|
|
obj-$(CONFIG_IWL3945) += iwl3945.o
|
|
iwl3945-objs := iwl3945-base.o iwl-3945.o iwl-3945-rs.o iwl-3945-led.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|