aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/tegra/Makefile')
-rw-r--r--sound/soc/tegra/Makefile34
1 files changed, 29 insertions, 5 deletions
diff --git a/sound/soc/tegra/Makefile b/sound/soc/tegra/Makefile
index fa6574d92a3..d546046d1e1 100644
--- a/sound/soc/tegra/Makefile
+++ b/sound/soc/tegra/Makefile
@@ -1,17 +1,41 @@
1GCOV_PROFILE := y
2
1# Tegra platform Support 3# Tegra platform Support
2snd-soc-tegra-das-objs := tegra_das.o
3snd-soc-tegra-pcm-objs := tegra_pcm.o 4snd-soc-tegra-pcm-objs := tegra_pcm.o
4snd-soc-tegra-i2s-objs := tegra_i2s.o 5snd-soc-tegra20-spdif-objs := tegra20_spdif.o
5snd-soc-tegra-utils-objs += tegra_asoc_utils.o 6snd-soc-tegra-utils-objs += tegra_asoc_utils.o
7snd-soc-tegra20-das-objs := tegra20_das.o
8snd-soc-tegra20-i2s-objs := tegra20_i2s.o
9snd-soc-tegra30-ahub-objs := tegra30_ahub.o
10snd-soc-tegra30-i2s-objs := tegra30_i2s.o
11snd-soc-tegra30-spdif-objs := tegra30_spdif.o
12snd-soc-tegra30-dam-objs := tegra30_dam.o
6 13
7obj-$(CONFIG_SND_SOC_TEGRA) += snd-soc-tegra-utils.o
8obj-$(CONFIG_SND_SOC_TEGRA) += snd-soc-tegra-das.o
9obj-$(CONFIG_SND_SOC_TEGRA) += snd-soc-tegra-pcm.o 14obj-$(CONFIG_SND_SOC_TEGRA) += snd-soc-tegra-pcm.o
10obj-$(CONFIG_SND_SOC_TEGRA_I2S) += snd-soc-tegra-i2s.o 15obj-$(CONFIG_SND_SOC_TEGRA) += snd-soc-tegra-utils.o
16obj-$(CONFIG_SND_SOC_TEGRA20_DAS) += snd-soc-tegra20-das.o
17obj-$(CONFIG_SND_SOC_TEGRA20_I2S) += snd-soc-tegra20-i2s.o
18obj-$(CONFIG_SND_SOC_TEGRA30_AHUB) += snd-soc-tegra30-ahub.o
19obj-$(CONFIG_SND_SOC_TEGRA30_DAM) += snd-soc-tegra30-dam.o
20obj-$(CONFIG_SND_SOC_TEGRA30_I2S) += snd-soc-tegra30-i2s.o
21obj-$(CONFIG_SND_SOC_TEGRA20_SPDIF) += snd-soc-tegra20-spdif.o
22obj-$(CONFIG_SND_SOC_TEGRA30_SPDIF) += snd-soc-tegra30-spdif.o
11 23
12# Tegra machine Support 24# Tegra machine Support
13snd-soc-tegra-wm8903-objs := tegra_wm8903.o 25snd-soc-tegra-wm8903-objs := tegra_wm8903.o
14snd-soc-tegra-trimslice-objs := trimslice.o 26snd-soc-tegra-trimslice-objs := trimslice.o
27snd-soc-tegra-wm8753-objs := tegra_wm8753.o
28snd-soc-tegra-max98088-objs := tegra_max98088.o
29snd-soc-tegra-aic326x-objs := tegra_aic326x.o
30snd-soc-tegra-rt5640-objs := tegra_rt5640.o
31snd-soc-tegra-max98095-objs := tegra_max98095.o
32snd-soc-tegra-p1852-objs := tegra_p1852.o
15 33
16obj-$(CONFIG_SND_SOC_TEGRA_WM8903) += snd-soc-tegra-wm8903.o 34obj-$(CONFIG_SND_SOC_TEGRA_WM8903) += snd-soc-tegra-wm8903.o
17obj-$(CONFIG_SND_SOC_TEGRA_TRIMSLICE) += snd-soc-tegra-trimslice.o 35obj-$(CONFIG_SND_SOC_TEGRA_TRIMSLICE) += snd-soc-tegra-trimslice.o
36obj-$(CONFIG_SND_SOC_TEGRA_WM8753) += snd-soc-tegra-wm8753.o
37obj-$(CONFIG_SND_SOC_TEGRA_MAX98088) += snd-soc-tegra-max98088.o
38obj-$(CONFIG_SND_SOC_TEGRA_TLV320AIC326X) += snd-soc-tegra-aic326x.o
39obj-$(CONFIG_SND_SOC_TEGRA_RT5640) += snd-soc-tegra-rt5640.o
40obj-$(CONFIG_SND_SOC_TEGRA_MAX98095) += snd-soc-tegra-max98095.o
41obj-$(CONFIG_SND_SOC_TEGRA_P1852) += snd-soc-tegra-p1852.o