mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 04:25:27 +08:00
712b6cf57a
This patch adds debugfs support to iwl core currently only iwl4965 is supported Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
13 lines
333 B
Makefile
13 lines
333 B
Makefile
obj-$(CONFIG_IWLCORE) += iwlcore.o
|
|
iwlcore-objs = iwl-core.o iwl-eeprom.o
|
|
|
|
ifeq ($(CONFIG_IWLWIFI_DEBUGFS),y)
|
|
iwlcore-objs += iwl-debugfs.o
|
|
endif
|
|
|
|
obj-$(CONFIG_IWL3945) += iwl3945.o
|
|
iwl3945-objs = iwl3945-base.o iwl-3945.o iwl-3945-rs.o
|
|
|
|
obj-$(CONFIG_IWL4965) += iwl4965.o
|
|
iwl4965-objs = iwl4965-base.o iwl-4965.o iwl-4965-rs.o
|