mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-27 13:05:03 +08:00
c85eb61969
The transport layer is responsible for all the queues, DMA rings etc... This is the beginning of the separation of all the code that is tighly related to HW design to the aforementioned transport layer. Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
26 lines
918 B
Makefile
26 lines
918 B
Makefile
# AGN
|
|
obj-$(CONFIG_IWLAGN) += iwlagn.o
|
|
iwlagn-objs := iwl-agn.o iwl-agn-rs.o
|
|
iwlagn-objs += iwl-agn-ucode.o iwl-agn-tx.o
|
|
iwlagn-objs += iwl-agn-lib.o iwl-agn-calib.o iwl-io.o
|
|
iwlagn-objs += iwl-agn-tt.o iwl-agn-sta.o iwl-agn-eeprom.o
|
|
|
|
iwlagn-objs += iwl-core.o iwl-eeprom.o iwl-hcmd.o iwl-power.o
|
|
iwlagn-objs += iwl-rx.o iwl-tx.o iwl-sta.o
|
|
iwlagn-objs += iwl-scan.o iwl-led.o
|
|
iwlagn-objs += iwl-agn-rxon.o iwl-agn-hcmd.o iwl-agn-ict.o
|
|
iwlagn-objs += iwl-5000.o
|
|
iwlagn-objs += iwl-6000.o
|
|
iwlagn-objs += iwl-1000.o
|
|
iwlagn-objs += iwl-2000.o
|
|
iwlagn-objs += iwl-pci.o
|
|
iwlagn-objs += iwl-trans.o
|
|
|
|
iwlagn-$(CONFIG_IWLWIFI_DEBUGFS) += iwl-debugfs.o
|
|
iwlagn-$(CONFIG_IWLWIFI_DEVICE_TRACING) += iwl-devtrace.o
|
|
iwlagn-$(CONFIG_IWLWIFI_DEVICE_SVTOOL) += iwl-sv-open.o
|
|
|
|
CFLAGS_iwl-devtrace.o := -I$(src)
|
|
|
|
ccflags-y += -D__CHECK_ENDIAN__
|