summaryrefslogtreecommitdiff
path: root/sound/soc/sh/rcar/scu.c
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2014-03-02 23:42:55 -0800
committerMark Brown <broonie@linaro.org>2014-03-04 12:13:49 +0800
commita126021d144bae88a563db2b57b0ad5eb1ee66d9 (patch)
treeeacaea15f124d1fa8789eda17267b40b3ddcaad7 /sound/soc/sh/rcar/scu.c
parent9bfed6cf4fa2cd2c5e80431244348b0c5d933cf5 (diff)
downloadlwn-a126021d144bae88a563db2b57b0ad5eb1ee66d9.tar.gz
lwn-a126021d144bae88a563db2b57b0ad5eb1ee66d9.zip
ASoC: rsnd: use mod array instead of list on rdai
struct rsnd_dai_stream used list for mod list. It added only odd flexibility to current driver, and it is a factor which makes extendibility difficult. rsnd use mod array instead of list from now. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/sh/rcar/scu.c')
-rw-r--r--sound/soc/sh/rcar/scu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/rcar/scu.c b/sound/soc/sh/rcar/scu.c
index 882e837d39d1..81264ecd82ac 100644
--- a/sound/soc/sh/rcar/scu.c
+++ b/sound/soc/sh/rcar/scu.c
@@ -659,7 +659,7 @@ int rsnd_scu_probe(struct platform_device *pdev,
ops = &rsnd_scu_non_gen2_ops;
}
- rsnd_mod_init(priv, &scu->mod, ops, i);
+ rsnd_mod_init(priv, &scu->mod, ops, RSND_MOD_SCU, i);
dev_dbg(dev, "SCU%d probed\n", i);
}