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

Commit e3842cf8 authored by Sudheer Papothi's avatar Sudheer Papothi Committed by Gerrit - the friendly Code Review server
Browse files

ASoC: Add audio support for sdmshrike



Add audio support for sdmshrike.

Change-Id: I0b86ab7b123a3215617b81a645202785f6810d02
Signed-off-by: default avatarSudheer Papothi <spapothi@codeaurora.org>
parent 85e1e33b
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -15,6 +15,10 @@ ifeq ($(CONFIG_ARCH_SDM855), 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_SDM855), 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