mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-16 09:06:41 +07:00
dba4b74d2d
Introduce netdev IOCTLs, to be used by the debug tools. Allows to read/write single dword value or memory block, aligned to dword Different address modes supported: - BAR offset - Firmware "linker" address - target's AHB bus Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
24 lines
564 B
Makefile
24 lines
564 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 += ioctl.o
|
|
wil6210-y += fw.o
|
|
wil6210-$(CONFIG_WIL6210_TRACING) += trace.o
|
|
wil6210-y += wil_platform.o
|
|
wil6210-$(CONFIG_WIL6210_PLATFORM_MSM) += wil_platform_msm.o
|
|
wil6210-y += ethtool.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
subdir-ccflags-y += -D__CHECK_ENDIAN__
|