mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-17 21:56:16 +07:00
0766789b1e
Commit ec8f24b7fa
("treewide: Add SPDX license identifier -
Makefile/Kconfig") marked various Makefiles and Kconfig files within ath
directories as GPL-2.0. But these modules and drivers are actually ISC:
* ath
* ar5523
* ath10k
* ath5k
* ath6kl
* ath9k
* wcn36xx
* wil6210
Fix SPDX tags accordingly.
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
26 lines
608 B
Makefile
26 lines
608 B
Makefile
# SPDX-License-Identifier: ISC
|
|
obj-$(CONFIG_WIL6210) += wil6210.o
|
|
|
|
wil6210-y := main.o
|
|
wil6210-y += netdev.o
|
|
wil6210-y += cfg80211.o
|
|
wil6210-y += pcie_bus.o
|
|
wil6210-$(CONFIG_WIL6210_DEBUGFS) += debugfs.o
|
|
wil6210-y += wmi.o
|
|
wil6210-y += interrupt.o
|
|
wil6210-y += txrx.o
|
|
wil6210-y += txrx_edma.o
|
|
wil6210-y += debug.o
|
|
wil6210-y += rx_reorder.o
|
|
wil6210-y += fw.o
|
|
wil6210-y += pm.o
|
|
wil6210-y += pmc.o
|
|
wil6210-$(CONFIG_WIL6210_TRACING) += trace.o
|
|
wil6210-y += wil_platform.o
|
|
wil6210-y += ethtool.o
|
|
wil6210-y += wil_crash_dump.o
|
|
wil6210-y += p2p.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|