Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: soc-topology: convert not to use asoc_xxx()

ASoC is now unified asoc_xxx() into snd_soc_xxx().
This patch convert asoc_xxx() to snd_soc_xxx().

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87h6o0p8t4.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Kuninori Morimoto and committed by
Mark Brown
8bfbdb18 b1f96e94

+3 -3
+3 -3
sound/soc/soc-topology.c
··· 1706 1706 /* 1707 1707 * Many topology are assuming link has Codec / Platform, and 1708 1708 * these might be overwritten at soc_tplg_dai_link_load(). 1709 - * Don't use &asoc_dummy_dlc here. 1709 + * Don't use &snd_soc_dummy_dlc here. 1710 1710 */ 1711 - link->codecs = &dlc[1]; /* Don't use &asoc_dummy_dlc here */ 1711 + link->codecs = &dlc[1]; /* Don't use &snd_soc_dummy_dlc here */ 1712 1712 link->codecs->name = "snd-soc-dummy"; 1713 1713 link->codecs->dai_name = "snd-soc-dummy-dai"; 1714 1714 link->num_codecs = 1; 1715 1715 1716 - link->platforms = &dlc[2]; /* Don't use &asoc_dummy_dlc here */ 1716 + link->platforms = &dlc[2]; /* Don't use &snd_soc_dummy_dlc here */ 1717 1717 link->platforms->name = "snd-soc-dummy"; 1718 1718 link->num_platforms = 1; 1719 1719