Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: Intel: Add makefile support for SKL driver

This adds makefile and Kconfig to enable Skylake HD audio PCM driver

Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Jeeja KP and committed by
Mark Brown
eb965e36 d8c2dab8

+8
+4
sound/soc/intel/Kconfig
··· 134 134 This adds support for ASoC machine driver for Intel(R) Cherrytrail & Braswell 135 135 platforms with MAX98090 audio codec it also can support TI jack chip as aux device. 136 136 If unsure select "N". 137 + 138 + config SND_SOC_INTEL_SKYLAKE 139 + tristate 140 + select SND_HDA_EXT_CORE
+1
sound/soc/intel/Makefile
··· 5 5 obj-$(CONFIG_SND_SOC_INTEL_HASWELL) += haswell/ 6 6 obj-$(CONFIG_SND_SOC_INTEL_BAYTRAIL) += baytrail/ 7 7 obj-$(CONFIG_SND_SST_MFLD_PLATFORM) += atom/ 8 + obj-$(CONFIG_SND_SOC_INTEL_SKYLAKE) += skylake/ 8 9 9 10 # Machine support 10 11 obj-$(CONFIG_SND_SOC) += boards/
+3
sound/soc/intel/skylake/Makefile
··· 1 + snd-soc-skl-objs := skl.o skl-pcm.o 2 + 3 + obj-$(CONFIG_SND_SOC_INTEL_SKYLAKE) += snd-soc-skl.o