diff options
author | Bruno Randolf <br1@einfach.org> | 2010-09-08 03:04:38 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-09-16 15:19:45 -0400 |
commit | 1bba5b7329e15555dab90071b24ca84d0afcc635 (patch) | |
tree | b9a60505fb9f88bac588694be1fd9d5dc7836c61 /drivers/net/wireless/ath/Makefile | |
parent | 34a1305137f484ee1806df5a00b9d8ee8d4ef758 (diff) |
ath: Copy key cache management functions from ath9k to ath
Copied the key cache management functions from ath9k (common.c and hw.c) to
ath/key.c so we can use them from ath5k, later.
Minor changes have been made:
- renamed ath9k_* to ath_*
- replaced ah->caps.keycache_size with common->keymax
- removed ATH9K_IS_MIC_ENABLED since it is always true.
- the AR_PCU_MIC_NEW_LOC_ENA flag is replaced with (splitmic == 0).
Signed-off-by: Bruno Randolf <br1@einfach.org>
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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/Makefile b/drivers/net/wireless/ath/Makefile index 40fa1794d489..6d711ec97ec2 100644 --- a/drivers/net/wireless/ath/Makefile +++ b/drivers/net/wireless/ath/Makefile | |||
@@ -7,6 +7,7 @@ obj-$(CONFIG_ATH_COMMON) += ath.o | |||
7 | 7 | ||
8 | ath-objs := main.o \ | 8 | ath-objs := main.o \ |
9 | regd.o \ | 9 | regd.o \ |
10 | hw.o | 10 | hw.o \ |
11 | key.o | ||
11 | 12 | ||
12 | ath-$(CONFIG_ATH_DEBUG) += debug.o | 13 | ath-$(CONFIG_ATH_DEBUG) += debug.o |