diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2015-11-10 05:11:18 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-11-18 18:08:16 +0000 |
commit | 94e2710cd2ce447cde879177d869b9ac231bc459 (patch) | |
tree | 31d4856e8231441cd68b19cc7b8ef1f1ef68f679 /sound/soc/sh/rcar/mix.c | |
parent | 75916f6524f055bca134f50901f926d5b0693db5 (diff) | |
download | linux-94e2710cd2ce447cde879177d869b9ac231bc459.tar.gz linux-94e2710cd2ce447cde879177d869b9ac231bc459.tar.bz2 linux-94e2710cd2ce447cde879177d869b9ac231bc459.zip |
ASoC: rsnd: remove platform boot support from core.c
No board is using Renesas sound driver via platform boot now.
This means all user is using DT boot. Platform boot support is
no longer needed. But, it strongly depends on platform boot style.
This patch removes platform boot support from core.c
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh/rcar/mix.c')
-rw-r--r-- | sound/soc/sh/rcar/mix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/rcar/mix.c b/sound/soc/sh/rcar/mix.c index 2baa2d79bfc0..195bc748a32f 100644 --- a/sound/soc/sh/rcar/mix.c +++ b/sound/soc/sh/rcar/mix.c @@ -130,7 +130,7 @@ static void rsnd_of_parse_mix(struct platform_device *pdev, if (!of_data) return; - node = of_get_child_by_name(dev->of_node, "rcar_sound,mix"); + node = rsnd_mix_of_node(priv); if (!node) return; |