diff options
author | Trevor Wu <trevor.wu@mediatek.com> | 2021-08-19 10:41:39 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-08-24 20:13:56 +0200 |
commit | 6746cc858259985a945a07075a19ec4d24352407 (patch) | |
tree | 677d2136fb072a877cdd3a8d2819699ef73a93e5 /sound/soc/mediatek/mt8195/Makefile | |
parent | ASoC: mediatek: mt8195: support pcm in platform driver (diff) | |
download | linux-6746cc858259985a945a07075a19ec4d24352407.tar.xz linux-6746cc858259985a945a07075a19ec4d24352407.zip |
ASoC: mediatek: mt8195: add platform driver
This patch adds mt8195 platform and affiliated driver.
Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>
Reported-by: kernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/r/20210819084144.18483-7-trevor.wu@mediatek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/mediatek/mt8195/Makefile')
-rw-r--r-- | sound/soc/mediatek/mt8195/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sound/soc/mediatek/mt8195/Makefile b/sound/soc/mediatek/mt8195/Makefile new file mode 100644 index 000000000000..6529dd5beb2b --- /dev/null +++ b/sound/soc/mediatek/mt8195/Makefile @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: GPL-2.0 + +# platform driver +snd-soc-mt8195-afe-objs := \ + mt8195-audsys-clk.o \ + mt8195-afe-clk.o \ + mt8195-afe-pcm.o \ + mt8195-dai-adda.o \ + mt8195-dai-etdm.o \ + mt8195-dai-pcm.o + +obj-$(CONFIG_SND_SOC_MT8195) += snd-soc-mt8195-afe.o |