summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2017-04-17 01:32:30 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2017-04-17 01:32:30 -0700
commit59fdfcc23b4bc3079ecdaf48b3969ca522314dbb (patch)
tree6249d4421e37265845cc11eb52ad7517326d6f09
parentdf340b97e54eda514ea304ce5008555feda165fe (diff)
parenteba5a128edbedf3684f52f9398d917fd6c87b4b0 (diff)
Merge "qcacld-2.0: Fix Kbuild to enable WLAN debugfs support" into wlan-cld2.driver.lnx.1.0-dev
-rw-r--r--Kbuild10
1 files changed, 5 insertions, 5 deletions
diff --git a/Kbuild b/Kbuild
index 3afca807c15e..ae5e617d044e 100644
--- a/Kbuild
+++ b/Kbuild
@@ -76,11 +76,6 @@ ifeq ($(KERNEL_BUILD), 0)
#Flag to enable Legacy Fast Roaming3(LFR3)
CONFIG_QCACLD_WLAN_LFR3 := y
- #Enable Power debugfs feature only if debug_fs is enabled
- ifeq ($(CONFIG_DEBUG_FS), y)
- CONFIG_WLAN_POWER_DEBUGFS := y
- endif
-
#JB kernel has PMKSA patches, hence enabling this flag
CONFIG_PRIMA_WLAN_OKC := y
@@ -158,6 +153,11 @@ ifeq ($(KERNEL_BUILD), 0)
endif
+#Enable Power debugfs feature only if debug_fs is enabled
+ifeq ($(CONFIG_DEBUG_FS), y)
+CONFIG_WLAN_POWER_DEBUGFS := y
+endif
+
ifdef CPTCFG_QCA_CLD_WLAN
WLAN_ROOT := $(BACKPORT_PWD)/drivers/staging/qcacld-2.0
CONFIG_QCA_CLD_WLAN=$(CPTCFG_QCA_CLD_WLAN)