forked from Minki/linux
1023fdc485
Since we're working on another mode/driver inside iwlwifi, move the current one into a subdirectory to more cleanly separate the code. While at it, rename all the files. Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
17 lines
453 B
Makefile
17 lines
453 B
Makefile
obj-$(CONFIG_IWLDVM) += dvm/
|
|
|
|
CFLAGS_iwl-devtrace.o := -I$(src)
|
|
|
|
# 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 += pcie/drv.o pcie/rx.o pcie/tx.o pcie/trans.o
|
|
iwlwifi-objs += pcie/1000.o pcie/2000.o pcie/5000.o pcie/6000.o
|
|
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEVICE_TRACING) += iwl-devtrace.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__ -I$(src)
|