mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 04:55:14 +07:00
7b501d10b1
The transport modules all need to allocate memory and set up certain values. Refactor that code into a new common function to share it and to simplify the error handling. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
24 lines
698 B
Makefile
24 lines
698 B
Makefile
# common
|
|
obj-$(CONFIG_IWLWIFI) += iwlwifi.o
|
|
iwlwifi-objs += iwl-io.o
|
|
iwlwifi-objs += iwl-drv.o
|
|
iwlwifi-objs += iwl-debug.o
|
|
iwlwifi-objs += iwl-notif-wait.o
|
|
iwlwifi-objs += iwl-eeprom-read.o iwl-eeprom-parse.o
|
|
iwlwifi-objs += iwl-phy-db.o iwl-nvm-parse.o
|
|
iwlwifi-objs += pcie/drv.o pcie/rx.o pcie/tx.o pcie/trans.o
|
|
iwlwifi-$(CONFIG_IWLDVM) += iwl-1000.o iwl-2000.o iwl-5000.o iwl-6000.o
|
|
iwlwifi-$(CONFIG_IWLMVM) += iwl-7000.o iwl-8000.o
|
|
iwlwifi-objs += iwl-trans.o
|
|
|
|
iwlwifi-objs += $(iwlwifi-m)
|
|
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEVICE_TRACING) += iwl-devtrace.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__ -I$(src)
|
|
|
|
obj-$(CONFIG_IWLDVM) += dvm/
|
|
obj-$(CONFIG_IWLMVM) += mvm/
|
|
|
|
CFLAGS_iwl-devtrace.o := -I$(src)
|