diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2015-10-22 05:15:04 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-10-22 14:30:01 +0200 |
commit | c9929345018927acaf52c14c57d78116067be6c9 (patch) | |
tree | ae7b7b0ea828b2e8c98828144fad79b251938b2f /sound/soc/sh/rcar/mix.c | |
parent | ASoC: rsnd: fixup rsnd_dai_call() behavior for .stop/.quit (diff) | |
download | linux-c9929345018927acaf52c14c57d78116067be6c9.tar.xz linux-c9929345018927acaf52c14c57d78116067be6c9.zip |
ASoC: rsnd: rename rsnd_mod_hw_start/stop to rsnd_mod_power_on/off
rsnd_mod_hw_start/stop were unclear naming.
It became rsnd_mod_power_on/off by this patch
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sh/rcar/mix.c b/sound/soc/sh/rcar/mix.c index ac2687d9ee55..953dd0be9b60 100644 --- a/sound/soc/sh/rcar/mix.c +++ b/sound/soc/sh/rcar/mix.c @@ -58,7 +58,7 @@ static int rsnd_mix_init(struct rsnd_mod *mod, struct rsnd_dai_stream *io, struct rsnd_priv *priv) { - rsnd_mod_hw_start(mod); + rsnd_mod_power_on(mod); rsnd_mix_soft_reset(mod); @@ -83,7 +83,7 @@ static int rsnd_mix_quit(struct rsnd_mod *mod, struct rsnd_dai_stream *io, struct rsnd_priv *priv) { - rsnd_mod_hw_stop(mod); + rsnd_mod_power_off(mod); return 0; } |