summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher N. Hesse <raymanfx@gmail.com>2015-11-03 18:49:40 +0100
committerChristopher N. Hesse <raymanfx@gmail.com>2015-11-03 19:01:50 +0100
commita0d7983ce66b84ad5d6406d351d4a8629b3bc968 (patch)
tree98e48c1d30e1cc7a4cdd9864ca96468d8ad19dec
parent7cf3c03b17cf57d8cd60c7a30dc48dc08bd4141e (diff)
downloadhardware_qcom_audio-a0d7983ce66b84ad5d6406d351d4a8629b3bc968.tar.gz
hardware_qcom_audio-a0d7983ce66b84ad5d6406d351d4a8629b3bc968.tar.bz2
hardware_qcom_audio-a0d7983ce66b84ad5d6406d351d4a8629b3bc968.zip
alsa_sound: Invert proxy/usbaudio check
This depends on proxy and analog dock headset audio device definitions, which are not present on the current CAF platform. This should be enabled on a per device basis once the needed defines are brought in. Change-Id: I0075039a1f835ecc75d2b0667f0681b1628110f9
-rw-r--r--legacy/alsa_sound/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/legacy/alsa_sound/Android.mk b/legacy/alsa_sound/Android.mk
index 91acf993..ca944e23 100644
--- a/legacy/alsa_sound/Android.mk
+++ b/legacy/alsa_sound/Android.mk
@@ -26,7 +26,7 @@ endif
ifeq ($(strip $(QCOM_FM_ENABLED)),true)
common_cflags += -DQCOM_FM_ENABLED
endif
-ifneq ($(strip $(QCOM_PROXY_DEVICE_ENABLED)),false)
+ifeq ($(strip $(QCOM_PROXY_DEVICE_ENABLED)),true)
common_cflags += -DQCOM_PROXY_DEVICE_ENABLED
endif
ifneq ($(strip $(QCOM_OUTPUT_FLAGS_ENABLED)),false)
@@ -35,7 +35,7 @@ endif
ifeq ($(strip $(QCOM_SSR_ENABLED)),true)
common_cflags += -DQCOM_SSR_ENABLED
endif
-ifneq ($(strip $(QCOM_USBAUDIO_ENABLED)),false)
+ifeq ($(strip $(QCOM_USBAUDIO_ENABLED)),true)
common_cflags += -DQCOM_USBAUDIO_ENABLED
endif
ifeq ($(strip $(QCOM_ADSP_SSR_ENABLED)),true)