mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 16:58:53 +00:00
d7d313000b
This patch fixes problem in Makefile that prevented built-in compilation of iwlcore Commit that caused this problem: eadd3c4b ("iwlwifi: make Makefile more concise") Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Yi Zhu <yi.zhu@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
478 B
Makefile
14 lines
478 B
Makefile
obj-$(CONFIG_IWLCORE) += iwlcore.o
|
|
iwlcore-objs := iwl-core.o iwl-eeprom.o iwl-hcmd.o
|
|
iwlcore-$(CONFIG_IWLWIFI_DEBUGFS) += iwl-debugfs.o
|
|
iwlcore-$(CONFIG_IWLWIFI_LEDS) += iwl-led.o
|
|
iwlcore-$(CONFIG_IWLWIFI_RFKILL) += iwl-rfkill.o
|
|
|
|
obj-$(CONFIG_IWL3945) += iwl3945.o
|
|
iwl3945-objs := iwl3945-base.o iwl-3945.o iwl-3945-rs.o
|
|
iwl3945-$(CONFIG_IWL3945_LEDS) += iwl-3945-led.o
|
|
|
|
obj-$(CONFIG_IWL4965) += iwl4965.o
|
|
iwl4965-objs := iwl4965-base.o iwl-4965.o iwl-4965-rs.o iwl-sta.o
|
|
|