diff options
author | Vinod Koul <vinod.koul@intel.com> | 2014-10-16 10:30:19 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-20 07:20:35 -0400 |
commit | 0fbc7d7320202489383f520ecd1758b15a00e17c (patch) | |
tree | 5faa7e5df70fdcc59b10f7aed5112fa64c82ef75 | |
parent | 60dc8dbacb001b6400624ee72990b85d6d44bce6 (diff) |
ASoC: Intel: sst: Add makefile and kconfig changes
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>
-rw-r--r-- | sound/soc/intel/Kconfig | 4 | ||||
-rw-r--r-- | sound/soc/intel/Makefile | 3 | ||||
-rw-r--r-- | sound/soc/intel/sst/Makefile | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig index f5b4a9c79cdf..c719438fa3d7 100644 --- a/sound/soc/intel/Kconfig +++ b/sound/soc/intel/Kconfig | |||
@@ -3,6 +3,7 @@ config SND_MFLD_MACHINE | |||
3 | depends on INTEL_SCU_IPC | 3 | depends on INTEL_SCU_IPC |
4 | select SND_SOC_SN95031 | 4 | select SND_SOC_SN95031 |
5 | select SND_SST_MFLD_PLATFORM | 5 | select SND_SST_MFLD_PLATFORM |
6 | select SND_SST_IPC | ||
6 | help | 7 | help |
7 | This adds support for ASoC machine driver for Intel(R) MID Medfield platform | 8 | This adds support for ASoC machine driver for Intel(R) MID Medfield platform |
8 | used as alsa device in audio substem in Intel(R) MID devices | 9 | used as alsa device in audio substem in Intel(R) MID devices |
@@ -12,6 +13,9 @@ config SND_MFLD_MACHINE | |||
12 | config SND_SST_MFLD_PLATFORM | 13 | config SND_SST_MFLD_PLATFORM |
13 | tristate | 14 | tristate |
14 | 15 | ||
16 | config SND_SST_IPC | ||
17 | tristate | ||
18 | |||
15 | config SND_SOC_INTEL_SST | 19 | config SND_SOC_INTEL_SST |
16 | tristate "ASoC support for Intel(R) Smart Sound Technology" | 20 | tristate "ASoC support for Intel(R) Smart Sound Technology" |
17 | select SND_SOC_INTEL_SST_ACPI if ACPI | 21 | select SND_SOC_INTEL_SST_ACPI if ACPI |
diff --git a/sound/soc/intel/Makefile b/sound/soc/intel/Makefile index f841786dad15..9ab43be75311 100644 --- a/sound/soc/intel/Makefile +++ b/sound/soc/intel/Makefile | |||
@@ -31,3 +31,6 @@ obj-$(CONFIG_SND_SOC_INTEL_HASWELL_MACH) += snd-soc-sst-haswell.o | |||
31 | obj-$(CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH) += snd-soc-sst-byt-rt5640-mach.o | 31 | obj-$(CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH) += snd-soc-sst-byt-rt5640-mach.o |
32 | obj-$(CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH) += snd-soc-sst-byt-max98090-mach.o | 32 | obj-$(CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH) += snd-soc-sst-byt-max98090-mach.o |
33 | obj-$(CONFIG_SND_SOC_INTEL_BROADWELL_MACH) += snd-soc-sst-broadwell.o | 33 | obj-$(CONFIG_SND_SOC_INTEL_BROADWELL_MACH) += snd-soc-sst-broadwell.o |
34 | |||
35 | # DSP driver | ||
36 | obj-$(CONFIG_SND_SST_IPC) += sst/ | ||
diff --git a/sound/soc/intel/sst/Makefile b/sound/soc/intel/sst/Makefile new file mode 100644 index 000000000000..4d0e79b1f8ce --- /dev/null +++ b/sound/soc/intel/sst/Makefile | |||
@@ -0,0 +1,3 @@ | |||
1 | snd-intel-sst-objs := sst.o sst_ipc.o sst_stream.o sst_drv_interface.o sst_loader.o sst_pvt.o | ||
2 | |||
3 | obj-$(CONFIG_SND_SST_IPC) += snd-intel-sst.o | ||