mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
0ea8d0432c
A new API is coming. This new API is not backward compatible. So we need to keep the old commands to be able to work with the former API. Move all the current code into a new file: coex_legacy. If a firmware with the new API is detected, we currently just bail out since the implementation of the new API will come in future patches. Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
12 lines
443 B
Makefile
12 lines
443 B
Makefile
obj-$(CONFIG_IWLMVM) += iwlmvm.o
|
|
iwlmvm-y += fw.o mac80211.o nvm.o ops.o phy-ctxt.o mac-ctxt.o
|
|
iwlmvm-y += utils.o rx.o tx.o binding.o quota.o sta.o sf.o
|
|
iwlmvm-y += scan.o time-event.o rs.o
|
|
iwlmvm-y += power.o coex.o coex_legacy.o
|
|
iwlmvm-y += tt.o offloading.o
|
|
iwlmvm-$(CONFIG_IWLWIFI_DEBUGFS) += debugfs.o debugfs-vif.o
|
|
iwlmvm-$(CONFIG_IWLWIFI_LEDS) += led.o
|
|
iwlmvm-$(CONFIG_PM_SLEEP) += d3.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__ -I$(src)/../
|