diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-04-08 07:28:47 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-04-14 17:24:10 +0300 |
commit | a4856e15e58b54977f1c0c0299309ad4d1f13365 (patch) | |
tree | 4beb74d892d456bd64c9c8df0961ae1406c193ed /sound/soc/sh | |
parent | a122a116fc6d8fcf2f202dcd185173a54268f239 (diff) | |
download | linux-a4856e15e58b54977f1c0c0299309ad4d1f13365.tar.xz |
ASoC: rsnd: check all BUSIF status when error
commit 66c705d07d784 ("SoC: rsnd: add interrupt support for SSI BUSIF
buffer") adds __rsnd_ssi_interrupt() checks for BUSIF status,
but is using "break" at for loop.
This means it is not checking all status. Let's check all BUSIF status.
Fixes: commit 66c705d07d784 ("SoC: rsnd: add interrupt support for SSI BUSIF buffer")
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/874kgh1jsw.wl-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/ssi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/sh/rcar/ssi.c b/sound/soc/sh/rcar/ssi.c index 048d53566127..9a3310393989 100644 --- a/sound/soc/sh/rcar/ssi.c +++ b/sound/soc/sh/rcar/ssi.c @@ -797,7 +797,6 @@ static void __rsnd_ssi_interrupt(struct rsnd_mod *mod, SSI_SYS_STATUS(i * 2), 0xf << (id * 4)); stop = true; - break; } } break; @@ -815,7 +814,6 @@ static void __rsnd_ssi_interrupt(struct rsnd_mod *mod, SSI_SYS_STATUS((i * 2) + 1), 0xf << 4); stop = true; - break; } } break; |