ASoC: sh: sh7760-ac97: use modern dai_link style
ASoC is now supporting modern style dai_link (= snd_soc_dai_link_component) for CPU/Codec/Platform. This patch switches to use it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
4f209c5142
commit
f9aaa1929b
|
@ -14,14 +14,15 @@
|
||||||
|
|
||||||
#define IPSEL 0xFE400034
|
#define IPSEL 0xFE400034
|
||||||
|
|
||||||
|
SND_SOC_DAILINK_DEFS(ac97,
|
||||||
|
DAILINK_COMP_ARRAY(COMP_CPU("hac-dai.0")), /* HAC0 */
|
||||||
|
DAILINK_COMP_ARRAY(COMP_CODEC("ac97-codec", "ac97-hifi")),
|
||||||
|
DAILINK_COMP_ARRAY(COMP_PLATFORM("sh7760-pcm-audio")));
|
||||||
|
|
||||||
static struct snd_soc_dai_link sh7760_ac97_dai = {
|
static struct snd_soc_dai_link sh7760_ac97_dai = {
|
||||||
.name = "AC97",
|
.name = "AC97",
|
||||||
.stream_name = "AC97 HiFi",
|
.stream_name = "AC97 HiFi",
|
||||||
.cpu_dai_name = "hac-dai.0", /* HAC0 */
|
SND_SOC_DAILINK_REG(ac97),
|
||||||
.codec_dai_name = "ac97-hifi",
|
|
||||||
.platform_name = "sh7760-pcm-audio",
|
|
||||||
.codec_name = "ac97-codec",
|
|
||||||
.ops = NULL,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct snd_soc_card sh7760_ac97_soc_machine = {
|
static struct snd_soc_card sh7760_ac97_soc_machine = {
|
||||||
|
|
Loading…
Reference in New Issue