mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 13:34:10 +08:00
dc0a50afa6
Soon, this machine driver will be updated to handle a number of Tegra boards using the WM8903 codec. Rename the file in advance to reflect this. Fix the content of tegra_wm8903.c to match the rename; replace references to Harmony board with something more generic. * s/struct tegra_harmony/struct tegra_wm8903/ * s/harmony/machine/ # variable name * Similar rename for some functions * Similar comment fix * Similar MODULE_DESCRIPTION fix Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
16 lines
528 B
Makefile
16 lines
528 B
Makefile
# Tegra platform Support
|
|
snd-soc-tegra-das-objs := tegra_das.o
|
|
snd-soc-tegra-pcm-objs := tegra_pcm.o
|
|
snd-soc-tegra-i2s-objs := tegra_i2s.o
|
|
snd-soc-tegra-utils-objs += tegra_asoc_utils.o
|
|
|
|
obj-$(CONFIG_SND_TEGRA_SOC) += snd-soc-tegra-utils.o
|
|
obj-$(CONFIG_SND_TEGRA_SOC) += snd-soc-tegra-das.o
|
|
obj-$(CONFIG_SND_TEGRA_SOC) += snd-soc-tegra-pcm.o
|
|
obj-$(CONFIG_SND_TEGRA_SOC_I2S) += snd-soc-tegra-i2s.o
|
|
|
|
# Tegra machine Support
|
|
snd-soc-tegra-wm8903-objs := tegra_wm8903.o
|
|
|
|
obj-$(CONFIG_SND_TEGRA_SOC_WM8903) += snd-soc-tegra-wm8903.o
|