mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 09:56:16 +07:00
b4490f423c
When running multiple connections, hardware can't do BACK reordering and it should be done on the host. Model after mac80211's implementation. Drop RCU for now; to be re-added when BACK will be stabilized BACK handshaking is not implemented yet in the hardware, pretend it was done to support the way FW operating Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
19 lines
413 B
Makefile
19 lines
413 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-$(CONFIG_WIL6210_TRACING) += trace.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
subdir-ccflags-y += -D__CHECK_ENDIAN__
|