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