Tomas Winkler | df48c32 | 2008-03-06 10:40:19 -0800 | [diff] [blame] | 1 | obj-$(CONFIG_IWLCORE) += iwlcore.o |
Tomas Winkler | 857485c | 2008-03-21 13:53:44 -0700 | [diff] [blame] | 2 | iwlcore-objs = iwl-core.o iwl-eeprom.o iwl-hcmd.o |
Tomas Winkler | df48c32 | 2008-03-06 10:40:19 -0800 | [diff] [blame] | 3 | |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 4 | ifeq ($(CONFIG_IWLWIFI_DEBUGFS),y) |
| 5 | iwlcore-objs += iwl-debugfs.o |
| 6 | endif |
| 7 | |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame^] | 8 | ifeq ($(CONFIG_IWLWIFI_LEDS),y) |
| 9 | iwlcore-objs += iwl-led.o |
| 10 | endif |
| 11 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 12 | obj-$(CONFIG_IWL3945) += iwl3945.o |
| 13 | iwl3945-objs = iwl3945-base.o iwl-3945.o iwl-3945-rs.o |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 14 | |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame^] | 15 | ifeq ($(CONFIG_IWL3945_LEDS),y) |
| 16 | iwl3945-objs += iwl-3945-led.o |
| 17 | endif |
| 18 | |
| 19 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 20 | obj-$(CONFIG_IWL4965) += iwl4965.o |
| 21 | iwl4965-objs = iwl4965-base.o iwl-4965.o iwl-4965-rs.o |
Mohamed Abbas | ab53d8a | 2008-03-25 16:33:36 -0700 | [diff] [blame^] | 22 | |