21 Mar
2013
21 Mar
'13
6 p.m.
On 03/21/2013 04:36 AM, Kuninori Morimoto wrote:
diff --git a/sound/soc/sh/migor.c b/sound/soc/sh/migor.c
static struct snd_soc_dai_link migor_dai = { .name = "wm8978", .stream_name = "WM8978",
- .cpu_dai_name = "siu-i2s-dai",
- .cpu_dai_name = "siu-pcm-audio",
I'm not sure what that change is for. The need for it should be described in the commit description.
diff --git a/sound/soc/sh/siu_dai.c b/sound/soc/sh/siu_dai.c
@@ -783,7 +787,8 @@ static int siu_probe(struct platform_device *pdev) dev_set_drvdata(&pdev->dev, info);
/* register using ARRAY version so we can keep dai name */
- ret = snd_soc_register_dais(&pdev->dev, &siu_i2s_dai, 1);
- ret = snd_soc_register_component(&pdev->dev, &siu_i2s_component,
&siu_i2s_dai, 1);
That changes from snd_soc_register_dais() to snd_soc_register_dai(). Will that be a problem?