summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRashed Abdel-Tawab <rashed@linux.com>2015-05-23 20:09:07 -0400
committerRashed Abdel-Tawab <rashed@linux.com>2015-10-09 18:23:44 -0400
commit8f5e1715f5792a2f33f1f01a54d367fd2ec63f66 (patch)
tree9d7a156f62822d091c465fa66a93924b1c6b2b54
parente278c9fba0c0d48f04c4a67962e0a0d3dcfdcf42 (diff)
downloadhardware_qcom_audio-8f5e1715f5792a2f33f1f01a54d367fd2ec63f66.tar.gz
hardware_qcom_audio-8f5e1715f5792a2f33f1f01a54d367fd2ec63f66.tar.bz2
hardware_qcom_audio-8f5e1715f5792a2f33f1f01a54d367fd2ec63f66.zip
hal: Invert more build flags
* All the msm8994 devices support this so just include by default Change-Id: I7fdbbedb1d440306f135db5c796721346aa9040c
-rw-r--r--hal/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/hal/Android.mk b/hal/Android.mk
index 6e478074..12015c55 100644
--- a/hal/Android.mk
+++ b/hal/Android.mk
@@ -54,7 +54,7 @@ ifeq ($(strip $(AUDIO_USE_LL_AS_PRIMARY_OUTPUT)),true)
LOCAL_CFLAGS += -DUSE_LL_AS_PRIMARY_OUTPUT
endif
-ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD)),true)
+ifneq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD)),false)
LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED
endif
@@ -181,7 +181,7 @@ ifeq ($(strip $(AUDIO_FEATURE_ENABLED_APE_OFFLOAD)),true)
LOCAL_CFLAGS += -DCOMPRESS_METADATA_NEEDED
endif
-ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD_24)),true)
+ifneq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD_24)),false)
LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED_24
endif