ASoC: rsnd: rsnd_ssi_probe() goes forwarder than rsnd_scu_probe()
rsnd_ssi_probe() goes forwarder than rsnd_scu_probe(), since scu will need ssi information on Gen2 Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
4686a0ad9a
commit
eb854f6dff
|
@ -763,6 +763,10 @@ static int rsnd_probe(struct platform_device *pdev)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = rsnd_ssi_probe(pdev, info, priv);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = rsnd_scu_probe(pdev, info, priv);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
@ -771,10 +775,6 @@ static int rsnd_probe(struct platform_device *pdev)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = rsnd_ssi_probe(pdev, info, priv);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = rsnd_dai_probe(pdev, info, priv);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue