Skip to content
Snippets Groups Projects
Commit ae07b878 authored by ftong's avatar ftong Committed by Gerrit - the friendly Code Review server
Browse files

audio-kernel-ar: configs: remove make export instances

Replace all kernel make export <all variables> instances with
export of specific variables.

Change-Id: Idde71b9f6786ad8b7f6afdc00d3255ca40f8c2fe
parent 65f96c3a
No related merge requests found
...@@ -26,22 +26,18 @@ endif ...@@ -26,22 +26,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_SA8255 ifdef CONFIG_SND_SOC_SA8255
include $(AUDIO_ROOT)/config/sa8255auto.conf include $(AUDIO_ROOT)/config/sa8255auto.conf
export
INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h
endif endif
else else
...@@ -102,11 +98,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -102,11 +98,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
...@@ -117,7 +111,6 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -117,7 +111,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)
......
...@@ -26,22 +26,18 @@ endif ...@@ -26,22 +26,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_SA8255 ifdef CONFIG_SND_SOC_SA8255
include $(AUDIO_ROOT)/config/sa8255auto.conf include $(AUDIO_ROOT)/config/sa8255auto.conf
export
INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h
endif endif
else else
...@@ -60,11 +56,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -60,11 +56,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
...@@ -111,7 +105,6 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -111,7 +105,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)
......
CONFIG_SND_SOC_GVM_AUTO_SPF=m export CONFIG_SND_SOC_GVM_AUTO_SPF=m
CONFIG_SND_SOC_MSM_STUB=m export CONFIG_SND_SOC_MSM_STUB=m
...@@ -26,22 +26,18 @@ endif ...@@ -26,22 +26,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_SA8255 ifdef CONFIG_SND_SOC_SA8255
include $(AUDIO_ROOT)/config/sa8255auto.conf include $(AUDIO_ROOT)/config/sa8255auto.conf
export
INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h
endif endif
else else
...@@ -49,11 +45,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -49,11 +45,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
...@@ -91,22 +85,18 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -91,22 +85,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
...@@ -117,7 +107,6 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -117,7 +107,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)
......
...@@ -27,22 +27,18 @@ endif ...@@ -27,22 +27,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_SA8255 ifdef CONFIG_SND_SOC_SA8255
include $(AUDIO_ROOT)/config/sa8255auto.conf include $(AUDIO_ROOT)/config/sa8255auto.conf
export
INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h
endif endif
else else
...@@ -50,11 +46,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -50,11 +46,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
...@@ -92,11 +86,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -92,11 +86,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
...@@ -108,17 +100,14 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -108,17 +100,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)
......
...@@ -26,22 +26,18 @@ endif ...@@ -26,22 +26,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_SA8255 ifdef CONFIG_SND_SOC_SA8255
include $(AUDIO_ROOT)/config/sa8255auto.conf include $(AUDIO_ROOT)/config/sa8255auto.conf
export
INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h INCS += -include $(AUDIO_ROOT)/config/sa8255autoconf.h
endif endif
else else
...@@ -49,11 +45,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -49,11 +45,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
...@@ -86,11 +80,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -86,11 +80,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
...@@ -102,11 +94,9 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -102,11 +94,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
...@@ -117,7 +107,6 @@ ifeq ($(KERNEL_BUILD), 0) ...@@ -117,7 +107,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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment