Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f0b5040 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ASoC: Add audio support for sdmshrike"

parents dc591563 e3842cf8
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -15,6 +15,10 @@ ifeq ($(CONFIG_ARCH_SM8150), y)
include $(srctree)/techpack/audio/config/sdm855auto.conf
export
endif
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
include $(srctree)/techpack/audio/config/sdm855auto.conf
export
endif

# Use USERINCLUDE when you must reference the UAPI directories only.
USERINCLUDE     += \
@@ -42,6 +46,10 @@ ifeq ($(CONFIG_ARCH_SM8150), y)
LINUXINCLUDE    += \
                -include $(srctree)/techpack/audio/config/sdm855autoconf.h
endif
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
LINUXINCLUDE    += \
                -include $(srctree)/techpack/audio/config/sdm855autoconf.h
endif

obj-y += asoc/
obj-y += dsp/
+5 −0
Original line number Diff line number Diff line
@@ -35,6 +35,11 @@ ifeq ($(KERNEL_BUILD), 0)
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif
	ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
		include $(AUDIO_ROOT)/config/sdm855auto.conf
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif
endif

# As per target team, build is done as follows:
+5 −0
Original line number Diff line number Diff line
@@ -34,6 +34,11 @@ ifeq ($(KERNEL_BUILD), 0)
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif
	ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
		include $(AUDIO_ROOT)/config/sdm855auto.conf
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif
endif

# As per target team, build is done as follows:
+6 −0
Original line number Diff line number Diff line
@@ -28,6 +28,12 @@ ifeq ($(KERNEL_BUILD), 0)
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif

	ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
		include $(AUDIO_ROOT)/config/sdm855auto.conf
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif
endif

# As per target team, build is done as follows:
+5 −0
Original line number Diff line number Diff line
@@ -36,6 +36,11 @@ ifeq ($(KERNEL_BUILD), 0)
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif
	ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
		include $(AUDIO_ROOT)/config/sdm855auto.conf
		export
		INCS    +=  -include $(AUDIO_ROOT)/config/sdm855autoconf.h
	endif
endif

# As per target team, build is done as follows:
Loading