diff options
author | Janusz Dziedzic <janusz.dziedzic@tieto.com> | 2013-10-14 05:06:06 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-10-18 14:03:54 -0400 |
commit | ad40d3da1e8683234714c3024219dc722ed1e214 (patch) | |
tree | 268ff7e0f4132ec76cb53e8b641170795ff05b01 /drivers/net/wireless/ath/Makefile | |
parent | 379ce86e1f458281ca014a0053cf9350c7dca4bf (diff) |
ath9k/ath: move dfs pattern detector to ath
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>
Diffstat (limited to 'drivers/net/wireless/ath/Makefile')
-rw-r--r-- | drivers/net/wireless/ath/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/Makefile b/drivers/net/wireless/ath/Makefile index 363b05653c7e..7d023b0f13b4 100644 --- a/drivers/net/wireless/ath/Makefile +++ b/drivers/net/wireless/ath/Makefile | |||
@@ -12,7 +12,9 @@ obj-$(CONFIG_ATH_COMMON) += ath.o | |||
12 | ath-objs := main.o \ | 12 | ath-objs := main.o \ |
13 | regd.o \ | 13 | regd.o \ |
14 | hw.o \ | 14 | hw.o \ |
15 | key.o | 15 | key.o \ |
16 | dfs_pattern_detector.o \ | ||
17 | dfs_pri_detector.o | ||
16 | 18 | ||
17 | ath-$(CONFIG_ATH_DEBUG) += debug.o | 19 | ath-$(CONFIG_ATH_DEBUG) += debug.o |
18 | ccflags-y += -D__CHECK_ENDIAN__ | 20 | ccflags-y += -D__CHECK_ENDIAN__ |