diff options
author | Kalle Valo <kvalo@codeaurora.org> | 2015-11-17 20:37:11 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-11-18 14:28:30 +0200 |
commit | 7ac9a364c1721a863ecc6cc9aba66e10114908db (patch) | |
tree | 2b83df4b655ea3494e95d9adb8d89ff539ecd688 /drivers/net/wireless/intel/iwlegacy/Makefile | |
parent | 367a1092b555f4372a556ddb53970d25061c74d1 (diff) | |
download | talos-obmc-linux-7ac9a364c1721a863ecc6cc9aba66e10114908db.tar.gz talos-obmc-linux-7ac9a364c1721a863ecc6cc9aba66e10114908db.zip |
iwlegacy: move under intel directory
Part of reorganising wireless drivers directory and Kconfig.
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/intel/iwlegacy/Makefile')
-rw-r--r-- | drivers/net/wireless/intel/iwlegacy/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/net/wireless/intel/iwlegacy/Makefile b/drivers/net/wireless/intel/iwlegacy/Makefile new file mode 100644 index 000000000000..c985a01a0731 --- /dev/null +++ b/drivers/net/wireless/intel/iwlegacy/Makefile @@ -0,0 +1,17 @@ +obj-$(CONFIG_IWLEGACY) += iwlegacy.o +iwlegacy-objs := common.o +iwlegacy-$(CONFIG_IWLEGACY_DEBUGFS) += debug.o + +iwlegacy-objs += $(iwlegacy-m) + +# 4965 +obj-$(CONFIG_IWL4965) += iwl4965.o +iwl4965-objs := 4965.o 4965-mac.o 4965-rs.o 4965-calib.o +iwl4965-$(CONFIG_IWLEGACY_DEBUGFS) += 4965-debug.o + +# 3945 +obj-$(CONFIG_IWL3945) += iwl3945.o +iwl3945-objs := 3945-mac.o 3945.o 3945-rs.o +iwl3945-$(CONFIG_IWLEGACY_DEBUGFS) += 3945-debug.o + +ccflags-y += -D__CHECK_ENDIAN__ |