OSDN Git Service

ASoC: rsnd: move rsnd_ssi_config_init() execute condition into it.
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tue, 8 Aug 2017 01:32:08 +0000 (01:32 +0000)
committerMark Brown <broonie@kernel.org>
Tue, 8 Aug 2017 11:03:49 +0000 (12:03 +0100)
Make it the same style as other functions

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sh/rcar/ssi.c

index 49cdc5e..3ee7b2d 100644 (file)
@@ -335,6 +335,9 @@ static void rsnd_ssi_config_init(struct rsnd_mod *mod,
        u32 wsr;
        int is_tdm;
 
+       if (rsnd_ssi_is_parent(mod, io))
+               return;
+
        is_tdm = rsnd_runtime_is_ssi_tdm(io);
 
        /*
@@ -472,8 +475,7 @@ static int rsnd_ssi_init(struct rsnd_mod *mod,
        if (ret < 0)
                return ret;
 
-       if (!rsnd_ssi_is_parent(mod, io))
-               rsnd_ssi_config_init(mod, io);
+       rsnd_ssi_config_init(mod, io);
 
        rsnd_ssi_register_setup(mod);