ath9k: Fix Kconfig for ATH9K_HTC
Ath9k consists of 2 different sub-modules: ATH9K and ATH9K_HTC. Both uses common Atheros code from ath.ko and need ATH_COMMON. However, while ATH9K selects ATH_COMMON, ATH9K_HTC does not. As result, if ATH9K_HTC is the only Atheros card selected, compilation fails with unresolved symbols. This patch moves ATH_COMMON selection to the common part for both ATH9K and ATH9K_HTC Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
619c5a9ad5
commit
9a6f7347f5
|
@ -2,6 +2,7 @@ config ATH9K_HW
|
||||||
tristate
|
tristate
|
||||||
config ATH9K_COMMON
|
config ATH9K_COMMON
|
||||||
tristate
|
tristate
|
||||||
|
select ATH_COMMON
|
||||||
config ATH9K_DFS_DEBUGFS
|
config ATH9K_DFS_DEBUGFS
|
||||||
def_bool y
|
def_bool y
|
||||||
depends on ATH9K_DEBUGFS && ATH9K_DFS_CERTIFIED
|
depends on ATH9K_DEBUGFS && ATH9K_DFS_CERTIFIED
|
||||||
|
@ -17,7 +18,6 @@ config ATH9K_BTCOEX_SUPPORT
|
||||||
config ATH9K
|
config ATH9K
|
||||||
tristate "Atheros 802.11n wireless cards support"
|
tristate "Atheros 802.11n wireless cards support"
|
||||||
depends on MAC80211
|
depends on MAC80211
|
||||||
select ATH_COMMON
|
|
||||||
select ATH9K_HW
|
select ATH9K_HW
|
||||||
select MAC80211_LEDS
|
select MAC80211_LEDS
|
||||||
select LEDS_CLASS
|
select LEDS_CLASS
|
||||||
|
|
Loading…
Reference in New Issue