From 56a9bf7f86d1780aafc42de9c66ffab3eb9d4c9d Mon Sep 17 00:00:00 2001 From: Smita Ghosh Date: Wed, 11 Sep 2019 19:48:14 -0700 Subject: [PATCH] qcacld-3.0: Disable the module under QMAA Module depends on msm headers which are not yet available. Thus, disable the module under QMAA. Change-Id: I91000cb3140f7d47e418c6a97c9dcf8b464ecdd2 CRs-Fixed: 2529636 --- Android.mk | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Android.mk b/Android.mk index c327725b95..c06f690c0e 100644 --- a/Android.mk +++ b/Android.mk @@ -1,3 +1,13 @@ +ENABLE_QCACLD := true +ifeq ($(TARGET_USES_QMAA), true) +ifneq ($(TARGET_USES_QMAA_OVERRIDE_WLAN), true) +ENABLE_QCACLD := false +else +ENABLE_QCACLD := true +endif +endif + +ifeq ($(ENABLE_QCACLD), true) # Android makefile for the WLAN Module LOCAL_PATH := $(call my-dir) @@ -160,3 +170,4 @@ endif # Multi-ko check endif # DLKM check endif # supported target check endif # WLAN enabled check +endif # ENABLE_QCACLD