diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-17 22:09:05 +0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-18 15:59:49 +0400 |
commit | 45eaa78f757b3b3992ca02c753764665e9fba0a4 (patch) | |
tree | 6a8dacef6f3fc10fb303035c218d4c16923ea523 /drivers/net/wireless/ath/ath6kl/Makefile | |
parent | f29af97853599e9537191c4f33f8ac87f3f503a9 (diff) | |
download | linux-45eaa78f757b3b3992ca02c753764665e9fba0a4.tar.xz |
ath6kl: create core.c
Currently core functions are spread between various files, group all
the functions into file and rename the functions to follow the style
used elsewhere in the driver. This will make it easier to a separate core
module.
Also fix a bug where wiphy is freed too early.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/Makefile')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/Makefile b/drivers/net/wireless/ath/ath6kl/Makefile index e24b61799158..854694b26a4b 100644 --- a/drivers/net/wireless/ath/ath6kl/Makefile +++ b/drivers/net/wireless/ath/ath6kl/Makefile @@ -31,5 +31,6 @@ ath6kl-y += init.o ath6kl-y += main.o ath6kl-y += txrx.o ath6kl-y += wmi.o +ath6kl-y += core.o ath6kl-y += sdio.o ath6kl-$(CONFIG_NL80211_TESTMODE) += testmode.o |