mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
151a970650
Firmware download implemented but is still experimental feature; flag controlling it added, no_fw_load. It is true by default, use no_fw_load=N to activate feature. Reset flows also got some adjustment for the fw download to work Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
20 lines
431 B
Makefile
20 lines
431 B
Makefile
obj-$(CONFIG_WIL6210) += wil6210.o
|
|
|
|
wil6210-y := main.o
|
|
wil6210-y += netdev.o
|
|
wil6210-y += cfg80211.o
|
|
wil6210-y += pcie_bus.o
|
|
wil6210-y += debugfs.o
|
|
wil6210-y += wmi.o
|
|
wil6210-y += interrupt.o
|
|
wil6210-y += txrx.o
|
|
wil6210-y += debug.o
|
|
wil6210-y += rx_reorder.o
|
|
wil6210-y += fw.o
|
|
wil6210-$(CONFIG_WIL6210_TRACING) += trace.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
subdir-ccflags-y += -D__CHECK_ENDIAN__
|