diff options
author | Matteo Croce <matteo@openwrt.org> | 2014-09-04 14:51:09 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-09-10 14:17:45 +0300 |
commit | ca5c671fb960712e274bf37dff8d6f5ebc02d40a (patch) | |
tree | a3fc9e01780264f4c7849c44dc592f8fdd10c5ed /drivers/net/wireless/ath/ath10k/Kconfig | |
parent | c4f8c83665cf47b658ec2e4cc83cd873f8c943c7 (diff) |
ath10k: ATH10K_DEBUGFS depends on DEBUG_FS
ATH10K_DEBUGFS must depend on DEBUG_FS, otherwise
ath10k will generate an invalid pointer on module load.
Signed-off-by: Matteo Croce <matteo@openwrt.org>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/Kconfig')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/Kconfig b/drivers/net/wireless/ath/ath10k/Kconfig index 1053bb5f2cdc..72acb822bb11 100644 --- a/drivers/net/wireless/ath/ath10k/Kconfig +++ b/drivers/net/wireless/ath/ath10k/Kconfig @@ -24,7 +24,7 @@ config ATH10K_DEBUG config ATH10K_DEBUGFS bool "Atheros ath10k debugfs support" - depends on ATH10K + depends on ATH10K && DEBUG_FS select RELAY ---help--- Enabled debugfs support |