audio-kernel: Fix compilation erros caused by export
Fix the issues reported after adding export. Change-Id: I1462d56463545e88619cc70b5dbef052df872399 Signed-off-by: Raghu Ballappa Bankapur <quic_rbankapu@quicinc.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -15,7 +15,7 @@ AUDIO_ROOT=$(KERNEL_SRC)/$(M)
|
|||||||
|
|
||||||
KBUILD_OPTIONS+= AUDIO_ROOT=$(AUDIO_ROOT)
|
KBUILD_OPTIONS+= AUDIO_ROOT=$(AUDIO_ROOT)
|
||||||
|
|
||||||
all: clean modules
|
all: modules
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(MAKE) -C $(KERNEL_SRC) M=$(M) clean
|
$(MAKE) -C $(KERNEL_SRC) M=$(M) clean
|
||||||
|
11
asoc/Kbuild
11
asoc/Kbuild
@@ -16,22 +16,18 @@ endif
|
|||||||
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_GVM
|
ifdef CONFIG_SND_SOC_GVM
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA7255
|
ifdef CONFIG_SND_SOC_SA7255
|
||||||
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -40,22 +36,18 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM8150), y)
|
ifeq ($(CONFIG_ARCH_SM8150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SM6150), y)
|
ifeq ($(CONFIG_ARCH_SM6150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -105,11 +97,9 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -120,7 +110,6 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
||||||
|
@@ -16,22 +16,18 @@ endif
|
|||||||
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_GVM
|
ifdef CONFIG_SND_SOC_GVM
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA7255
|
ifdef CONFIG_SND_SOC_SA7255
|
||||||
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
@@ -39,22 +35,18 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM8150), y)
|
ifeq ($(CONFIG_ARCH_SM8150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SM6150), y)
|
ifeq ($(CONFIG_ARCH_SM6150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -103,7 +95,6 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_QCS405), y)
|
ifeq ($(CONFIG_ARCH_QCS405), y)
|
||||||
@@ -113,7 +104,6 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
||||||
|
12
dsp/Kbuild
12
dsp/Kbuild
@@ -16,22 +16,18 @@ endif
|
|||||||
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_GVM
|
ifdef CONFIG_SND_SOC_GVM
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA7255
|
ifdef CONFIG_SND_SOC_SA7255
|
||||||
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
@@ -39,17 +35,14 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM6150), y)
|
ifeq ($(CONFIG_ARCH_SM6150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_TRINKET), y)
|
ifeq ($(CONFIG_ARCH_TRINKET), y)
|
||||||
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_KONA), y)
|
ifeq ($(CONFIG_ARCH_KONA), y)
|
||||||
@@ -93,22 +86,18 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM8150), y)
|
ifeq ($(CONFIG_ARCH_SM8150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -119,7 +108,6 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
||||||
|
11
ipc/Kbuild
11
ipc/Kbuild
@@ -17,22 +17,18 @@ endif
|
|||||||
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_GVM
|
ifdef CONFIG_SND_SOC_GVM
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA7255
|
ifdef CONFIG_SND_SOC_SA7255
|
||||||
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
@@ -40,11 +36,9 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM6150), y)
|
ifeq ($(CONFIG_ARCH_SM6150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -94,11 +88,9 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM8150), y)
|
ifeq ($(CONFIG_ARCH_SM8150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -110,17 +102,14 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
||||||
|
11
soc/Kbuild
11
soc/Kbuild
@@ -16,22 +16,18 @@ endif
|
|||||||
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
ifeq ($(CONFIG_SND_SOC_AUTO), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_GVM
|
ifdef CONFIG_SND_SOC_GVM
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_SND_SOC_SA7255
|
ifdef CONFIG_SND_SOC_SA7255
|
||||||
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
include $(AUDIO_ROOT)/config/sa7255auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa7255autoconf.h
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
@@ -39,11 +35,9 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM8150), y)
|
ifeq ($(CONFIG_ARCH_SM8150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -92,11 +86,9 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SM6150), y)
|
ifeq ($(CONFIG_ARCH_SM6150), y)
|
||||||
ifdef CONFIG_SND_SOC_SA6155
|
ifdef CONFIG_SND_SOC_SA6155
|
||||||
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
include $(AUDIO_ROOT)/config/sa6155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
include $(AUDIO_ROOT)/config/sm6150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -108,11 +100,9 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
||||||
ifdef CONFIG_SND_SOC_SA8155
|
ifdef CONFIG_SND_SOC_SA8155
|
||||||
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
include $(AUDIO_ROOT)/config/sa8155auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
|
||||||
else
|
else
|
||||||
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
include $(AUDIO_ROOT)/config/sm8150auto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@@ -123,7 +113,6 @@ ifeq ($(KERNEL_BUILD), 0)
|
|||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
|
||||||
include $(AUDIO_ROOT)/config/gvmauto.conf
|
include $(AUDIO_ROOT)/config/gvmauto.conf
|
||||||
export
|
|
||||||
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
|
||||||
|
Reference in New Issue
Block a user