diff options
-rw-r--r-- | sound/soc/intel/Kconfig | 12 | ||||
-rw-r--r-- | sound/soc/intel/Makefile | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig index 4d9d0a546cb1..b0a07e4cc919 100644 --- a/sound/soc/intel/Kconfig +++ b/sound/soc/intel/Kconfig | |||
@@ -11,3 +11,15 @@ config SND_MFLD_MACHINE | |||
11 | 11 | ||
12 | config SND_SST_MFLD_PLATFORM | 12 | config SND_SST_MFLD_PLATFORM |
13 | tristate | 13 | tristate |
14 | |||
15 | config SND_SOC_INTEL_SST | ||
16 | tristate "ASoC support for Intel(R) Smart Sound Technology" | ||
17 | select SND_SOC_INTEL_SST_ACPI if ACPI | ||
18 | help | ||
19 | This adds support for Intel(R) Smart Sound Technology (SST). | ||
20 | Say Y if you have such a device | ||
21 | If unsure select "N". | ||
22 | |||
23 | config SND_SOC_INTEL_SST_ACPI | ||
24 | tristate | ||
25 | |||
diff --git a/sound/soc/intel/Makefile b/sound/soc/intel/Makefile index eb899fc90d92..cf47100661e9 100644 --- a/sound/soc/intel/Makefile +++ b/sound/soc/intel/Makefile | |||
@@ -1,5 +1,12 @@ | |||
1 | # Core support | ||
2 | snd-soc-sst-dsp-objs := sst-dsp.o sst-firmware.o | ||
3 | snd-soc-sst-acpi-objs := sst-acpi.o | ||
4 | |||
1 | snd-soc-sst-mfld-platform-objs := sst-mfld-platform.o | 5 | snd-soc-sst-mfld-platform-objs := sst-mfld-platform.o |
2 | snd-soc-mfld-machine-objs := mfld_machine.o | 6 | snd-soc-mfld-machine-objs := mfld_machine.o |
3 | 7 | ||
4 | obj-$(CONFIG_SND_SST_MFLD_PLATFORM) += snd-soc-sst-mfld-platform.o | 8 | obj-$(CONFIG_SND_SST_MFLD_PLATFORM) += snd-soc-sst-mfld-platform.o |
5 | obj-$(CONFIG_SND_MFLD_MACHINE) += snd-soc-mfld-machine.o | 9 | obj-$(CONFIG_SND_MFLD_MACHINE) += snd-soc-mfld-machine.o |
10 | |||
11 | obj-$(CONFIG_SND_SOC_INTEL_SST) += snd-soc-sst-dsp.o | ||
12 | obj-$(CONFIG_SND_SOC_INTEL_SST_ACPI) += snd-soc-sst-acpi.o | ||