mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-18 08:35:08 +08:00
ad40d3da1e
Move the DFS pattern detector code to the ath module so the other Atheros drivers can make us of it. This makes no functional changes. Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com> Reviewed-by: Luis R. Rodriguez <mcgrof@do-not-panic.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
21 lines
474 B
Makefile
21 lines
474 B
Makefile
obj-$(CONFIG_ATH5K) += ath5k/
|
|
obj-$(CONFIG_ATH9K_HW) += ath9k/
|
|
obj-$(CONFIG_CARL9170) += carl9170/
|
|
obj-$(CONFIG_ATH6KL) += ath6kl/
|
|
obj-$(CONFIG_AR5523) += ar5523/
|
|
obj-$(CONFIG_WIL6210) += wil6210/
|
|
obj-$(CONFIG_ATH10K) += ath10k/
|
|
obj-$(CONFIG_WCN36XX) += wcn36xx/
|
|
|
|
obj-$(CONFIG_ATH_COMMON) += ath.o
|
|
|
|
ath-objs := main.o \
|
|
regd.o \
|
|
hw.o \
|
|
key.o \
|
|
dfs_pattern_detector.o \
|
|
dfs_pri_detector.o
|
|
|
|
ath-$(CONFIG_ATH_DEBUG) += debug.o
|
|
ccflags-y += -D__CHECK_ENDIAN__
|