diff options
author | David S. Miller <davem@davemloft.net> | 2012-02-21 17:47:33 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-02-21 17:47:33 -0500 |
commit | 4b0d1a0b1fd7248d0fc341d00ed908c7373c7788 (patch) | |
tree | 7ba1dad63482c9a3d4461ec324aef9f909e73f49 /drivers/net/wireless/ath/ath6kl/Makefile | |
parent | 8de65c2aaa1faf8e57e1b29b4265b6a57fae4136 (diff) | |
parent | a9802d43f205faa2fff422502a1336a50b9615c3 (diff) |
Merge branch 'for-davem' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/Makefile')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/Makefile | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/Makefile b/drivers/net/wireless/ath/ath6kl/Makefile index 707069303550..9ba42fa04962 100644 --- a/drivers/net/wireless/ath/ath6kl/Makefile +++ b/drivers/net/wireless/ath/ath6kl/Makefile | |||
@@ -21,17 +21,21 @@ | |||
21 | # Author(s): ="Atheros" | 21 | # Author(s): ="Atheros" |
22 | #------------------------------------------------------------------------------ | 22 | #------------------------------------------------------------------------------ |
23 | 23 | ||
24 | obj-$(CONFIG_ATH6KL) := ath6kl.o | 24 | obj-$(CONFIG_ATH6KL) += ath6kl_core.o |
25 | ath6kl-y += debug.o | 25 | ath6kl_core-y += debug.o |
26 | ath6kl-y += hif.o | 26 | ath6kl_core-y += hif.o |
27 | ath6kl-y += htc.o | 27 | ath6kl_core-y += htc.o |
28 | ath6kl-y += bmi.o | 28 | ath6kl_core-y += bmi.o |
29 | ath6kl-y += cfg80211.o | 29 | ath6kl_core-y += cfg80211.o |
30 | ath6kl-y += init.o | 30 | ath6kl_core-y += init.o |
31 | ath6kl-y += main.o | 31 | ath6kl_core-y += main.o |
32 | ath6kl-y += txrx.o | 32 | ath6kl_core-y += txrx.o |
33 | ath6kl-y += wmi.o | 33 | ath6kl_core-y += wmi.o |
34 | ath6kl-y += sdio.o | 34 | ath6kl_core-y += core.o |
35 | ath6kl-$(CONFIG_NL80211_TESTMODE) += testmode.o | 35 | ath6kl_core-$(CONFIG_NL80211_TESTMODE) += testmode.o |
36 | 36 | ||
37 | ccflags-y += -D__CHECK_ENDIAN__ | 37 | obj-$(CONFIG_ATH6KL_SDIO) += ath6kl_sdio.o |
38 | ath6kl_sdio-y += sdio.o | ||
39 | |||
40 | obj-$(CONFIG_ATH6KL_USB) += ath6kl_usb.o | ||
41 | ath6kl_usb-y += usb.o | ||