diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-06-25 22:00:05 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-06-26 07:28:35 -0400 |
commit | 526a6d45b013d45fdddd420860c69fb29fed3d62 (patch) | |
tree | 308cb5494828b67e1e6586be64d568b594b2c093 | |
parent | dfea7b2c5c7eaf657086bb95d61814d7e04d1409 (diff) |
ASoC: rsnd: add missing pin sharing with SSI9
When SSI9 is sharing pin with SSI0, we need to care about it,
but is missing. This patch fixup it.
Reported-by: Hien Dang <hien.dang.eb@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Chaoliang Qin <chaoliang.qin.jg@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/sh/rcar/adg.c | 1 | ||||
-rw-r--r-- | sound/soc/sh/rcar/ssi.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/sh/rcar/adg.c b/sound/soc/sh/rcar/adg.c index e821ccc70f47..fce4e050a9b7 100644 --- a/sound/soc/sh/rcar/adg.c +++ b/sound/soc/sh/rcar/adg.c | |||
@@ -87,6 +87,7 @@ static u32 rsnd_adg_ssi_ws_timing_gen2(struct rsnd_dai_stream *io) | |||
87 | switch (id) { | 87 | switch (id) { |
88 | case 1: | 88 | case 1: |
89 | case 2: | 89 | case 2: |
90 | case 9: | ||
90 | ws = 0; | 91 | ws = 0; |
91 | break; | 92 | break; |
92 | case 4: | 93 | case 4: |
diff --git a/sound/soc/sh/rcar/ssi.c b/sound/soc/sh/rcar/ssi.c index 44bda210256e..f6a7466622ea 100644 --- a/sound/soc/sh/rcar/ssi.c +++ b/sound/soc/sh/rcar/ssi.c | |||
@@ -740,6 +740,7 @@ static void rsnd_ssi_parent_attach(struct rsnd_mod *mod, | |||
740 | switch (rsnd_mod_id(mod)) { | 740 | switch (rsnd_mod_id(mod)) { |
741 | case 1: | 741 | case 1: |
742 | case 2: | 742 | case 2: |
743 | case 9: | ||
743 | rsnd_dai_connect(rsnd_ssi_mod_get(priv, 0), io, RSND_MOD_SSIP); | 744 | rsnd_dai_connect(rsnd_ssi_mod_get(priv, 0), io, RSND_MOD_SSIP); |
744 | break; | 745 | break; |
745 | case 4: | 746 | case 4: |