diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2015-12-16 21:55:25 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-12-18 07:10:56 -0500 |
commit | cdf310ce119989353bb6848ca8327814ae1012e2 (patch) | |
tree | 02f445d144423e899a3c259cfcfa652b75035f67 | |
parent | af998f853124231ef3bff05621f157a19af05d20 (diff) |
ASoC: rsnd: fixup SSIU control timing
SSIU should be controlled after SSI. This patch fix up it
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/sh/rcar/rsnd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/rcar/rsnd.h b/sound/soc/sh/rcar/rsnd.h index ad854d6719ea..4b677e074c7a 100644 --- a/sound/soc/sh/rcar/rsnd.h +++ b/sound/soc/sh/rcar/rsnd.h | |||
@@ -181,9 +181,9 @@ enum rsnd_mod_type { | |||
181 | RSND_MOD_CTU, | 181 | RSND_MOD_CTU, |
182 | RSND_MOD_CMD, | 182 | RSND_MOD_CMD, |
183 | RSND_MOD_SRC, | 183 | RSND_MOD_SRC, |
184 | RSND_MOD_SSIU, | ||
185 | RSND_MOD_SSIP, /* SSI parent */ | 184 | RSND_MOD_SSIP, /* SSI parent */ |
186 | RSND_MOD_SSI, | 185 | RSND_MOD_SSI, |
186 | RSND_MOD_SSIU, | ||
187 | RSND_MOD_MAX, | 187 | RSND_MOD_MAX, |
188 | }; | 188 | }; |
189 | 189 | ||