forked from Minki/linux
8ca151b568
Newer firmware revisions have a completely new firmware API. This is the new driver for this new API. I've listed the people who directly contributed code, but many others from various teams have contributed in other ways. Cc: Alexander Bondar <alexander.bondar@intel.com> Cc: Amit Beka <amit.beka@intel.com> Cc: Amnon Paz <amnonx.paz@intel.com> Cc: Assaf Krauss <assaf.krauss@intel.com> Cc: David Spinadel <david.spinadel@intel.com> Cc: Dor Shaish <dor.shaish@intel.com> Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Cc: Eytan Lifshitz <eytan.lifshitz@intel.com> Cc: Ilan Peer <ilan.peer@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
23 lines
668 B
Makefile
23 lines
668 B
Makefile
# 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 += iwl-eeprom-read.o iwl-eeprom-parse.o
|
|
iwlwifi-objs += iwl-phy-db.o iwl-nvm-parse.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-objs += pcie/7000.o
|
|
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEVICE_TRACING) += iwl-devtrace.o
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEVICE_TESTMODE) += iwl-test.o
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__ -I$(src)
|
|
|
|
|
|
obj-$(CONFIG_IWLDVM) += dvm/
|
|
obj-$(CONFIG_IWLMVM) += mvm/
|
|
|
|
CFLAGS_iwl-devtrace.o := -I$(src)
|