Skip to content

Commit

Permalink
ASoC: rsnd: src: add rsnd_src_of_node()
Browse files Browse the repository at this point in the history
This patch adds rsnd_src_of_node() to get SRC subnode from DT.
This is prepare for new DT bindings for 1st DMAC

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Kuninori Morimoto authored and Mark Brown committed Mar 7, 2015
1 parent 04e627b commit 82e76ed
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sound/soc/sh/rcar/src.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ struct rsnd_src {
#define RSND_SRC_NAME_SIZE 16

#define rsnd_src_convert_rate(p) ((p)->info->convert_rate)
#define rsnd_src_of_node(priv) \
of_get_child_by_name(rsnd_priv_to_dev(priv)->of_node, "rcar_sound,src")

#define rsnd_mod_to_src(_mod) \
container_of((_mod), struct rsnd_src, mod)

Expand Down Expand Up @@ -807,7 +810,7 @@ static void rsnd_of_parse_src(struct platform_device *pdev,
if (!of_data)
return;

src_node = of_get_child_by_name(dev->of_node, "rcar_sound,src");
src_node = rsnd_src_of_node(priv);
if (!src_node)
return;

Expand Down

0 comments on commit 82e76ed

Please sign in to comment.