Commit 6acef172 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: rsnd: remove meaningless rsnd_ssi_non()

rsnd_ssi_non_ops callback functions are never called.
remove these meaningless callback
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 92d9587e
...@@ -555,24 +555,8 @@ static struct rsnd_mod_ops rsnd_ssi_dma_ops = { ...@@ -555,24 +555,8 @@ static struct rsnd_mod_ops rsnd_ssi_dma_ops = {
/* /*
* Non SSI * Non SSI
*/ */
static int rsnd_ssi_non(struct rsnd_mod *mod,
struct rsnd_dai *rdai,
struct rsnd_dai_stream *io)
{
struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
struct device *dev = rsnd_priv_to_dev(priv);
dev_dbg(dev, "%s\n", __func__);
return 0;
}
static struct rsnd_mod_ops rsnd_ssi_non_ops = { static struct rsnd_mod_ops rsnd_ssi_non_ops = {
.name = "ssi (non)", .name = "ssi (non)",
.init = rsnd_ssi_non,
.quit = rsnd_ssi_non,
.start = rsnd_ssi_non,
.stop = rsnd_ssi_non,
}; };
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment