forked from Minki/linux
1bba5b7329
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>
14 lines
266 B
Makefile
14 lines
266 B
Makefile
obj-$(CONFIG_ATH5K) += ath5k/
|
|
obj-$(CONFIG_ATH9K_HW) += ath9k/
|
|
obj-$(CONFIG_AR9170_USB) += ar9170/
|
|
obj-$(CONFIG_CARL9170) += carl9170/
|
|
|
|
obj-$(CONFIG_ATH_COMMON) += ath.o
|
|
|
|
ath-objs := main.o \
|
|
regd.o \
|
|
hw.o \
|
|
key.o
|
|
|
|
ath-$(CONFIG_ATH_DEBUG) += debug.o
|