diff options
author | Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | 2012-12-12 10:56:09 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-12-17 15:48:43 -0500 |
commit | 009b969632137f91534db91c19d62f1ae21ba8a0 (patch) | |
tree | a793acd6e695948cbe613f0ecb21084ab9b5fbf0 /drivers/net/wireless/Makefile | |
parent | 028014c81e3f8a5e8b5f161dceac5e6e5d6314ec (diff) | |
download | linux-3.10-009b969632137f91534db91c19d62f1ae21ba8a0.tar.gz linux-3.10-009b969632137f91534db91c19d62f1ae21ba8a0.tar.bz2 linux-3.10-009b969632137f91534db91c19d62f1ae21ba8a0.zip |
wireless: fix Atheros drivers compilation
Bug introduced in commit:
wireless: allow Atheros card to not depend on ath.ko
Commit in question changed CONFIG_ATH_COMMON to CONFIG_ATH_CARDS as
"Atheros card" indication in drivers/net/wireless/ath/Kconfig but it
is used also by drivers/net/wireless/Makefile
If there are only Atheros cards that do not require ATH_COMMON, whole
Makefile for Atheros cards was not executed; and as result, driver
won't compile in this case.
Change in CONFIG_ option name should be reflected in the
drivers/net/wireless/Makefile
Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Tested-by: Kalle Valo <kvalo@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/Makefile')
-rw-r--r-- | drivers/net/wireless/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/Makefile b/drivers/net/wireless/Makefile index 062dfdff636..67156efe14c 100644 --- a/drivers/net/wireless/Makefile +++ b/drivers/net/wireless/Makefile @@ -47,7 +47,7 @@ obj-$(CONFIG_RT2X00) += rt2x00/ obj-$(CONFIG_P54_COMMON) += p54/ -obj-$(CONFIG_ATH_COMMON) += ath/ +obj-$(CONFIG_ATH_CARDS) += ath/ obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o |