aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/sh
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2015-11-05 03:50:10 -0500
committerMark Brown <broonie@kernel.org>2015-11-16 05:09:29 -0500
commit81ad174db5ca8f372da6dc31a4ca25d52f9bec5f (patch)
tree832c85103a247231fe255bead274c418a01d4baf /sound/soc/sh
parent13e0d17d08d1d651aa119c286f74cf366caf09dd (diff)
ASoC: rsnd: tidyup comment position of rsnd_mod_xxx
f1df12290("ASoC: rsnd: add common mod confirm method") added rsnd_mod_make_sure(), but rsnd_mod_xxx() comment position was wrong. This patch tidyup it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh')
-rw-r--r--sound/soc/sh/rcar/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c
index 5586b888db56..1363966fa957 100644
--- a/sound/soc/sh/rcar/core.c
+++ b/sound/soc/sh/rcar/core.c
@@ -127,6 +127,9 @@ MODULE_DEVICE_TABLE(of, rsnd_of_match);
127#define rsnd_info_id(priv, io, name) \ 127#define rsnd_info_id(priv, io, name) \
128 ((io)->info->name - priv->info->name##_info) 128 ((io)->info->name - priv->info->name##_info)
129 129
130/*
131 * rsnd_mod functions
132 */
130void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type) 133void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type)
131{ 134{
132 if (mod->type != type) { 135 if (mod->type != type) {
@@ -138,9 +141,6 @@ void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type)
138 } 141 }
139} 142}
140 143
141/*
142 * rsnd_mod functions
143 */
144char *rsnd_mod_name(struct rsnd_mod *mod) 144char *rsnd_mod_name(struct rsnd_mod *mod)
145{ 145{
146 if (!mod || !mod->ops) 146 if (!mod || !mod->ops)