diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-17 13:09:36 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-18 06:59:51 -0500 |
commit | d6a434d60e064a5f2bef1c13ca5ed84bfa6b8b4f (patch) | |
tree | 9920f4f6552420f83b1c65000ed3c5840b49d272 /drivers/net/wireless/ath/ath6kl/init.c | |
parent | 3b1b7d0985fdb26403678e49938a668ef7f772ea (diff) |
ath6kl: create ath6kl_core.ko
Now ath6kl is ready for splitting core code to ath6kl_core.ko module.
This also makes it possible to link both sdio and usb code to kernel
at the same time, which earlier failed miserably.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/init.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c index b8252ced0968..167dc41af2de 100644 --- a/drivers/net/wireless/ath/ath6kl/init.c +++ b/drivers/net/wireless/ath/ath6kl/init.c | |||
@@ -17,8 +17,10 @@ | |||
17 | 17 | ||
18 | #include <linux/moduleparam.h> | 18 | #include <linux/moduleparam.h> |
19 | #include <linux/errno.h> | 19 | #include <linux/errno.h> |
20 | #include <linux/export.h> | ||
20 | #include <linux/of.h> | 21 | #include <linux/of.h> |
21 | #include <linux/mmc/sdio_func.h> | 22 | #include <linux/mmc/sdio_func.h> |
23 | |||
22 | #include "core.h" | 24 | #include "core.h" |
23 | #include "cfg80211.h" | 25 | #include "cfg80211.h" |
24 | #include "target.h" | 26 | #include "target.h" |
@@ -1707,3 +1709,4 @@ void ath6kl_stop_txrx(struct ath6kl *ar) | |||
1707 | 1709 | ||
1708 | clear_bit(WLAN_ENABLED, &ar->flag); | 1710 | clear_bit(WLAN_ENABLED, &ar->flag); |
1709 | } | 1711 | } |
1712 | EXPORT_SYMBOL(ath6kl_stop_txrx); | ||