[alsa-devel] [PATCH] ASoC: rsnd: fixup index of src/dst mod when capture
Kuninori Morimoto
kuninori.morimoto.gx at gmail.com
Wed Jun 11 08:41:03 CEST 2014
From: Kuninori Morimoto <kuninori.morimoto.gx at renesas.com>
Index of dma name should use -1, not +1 when capture case.
Thank you Dan.
Reported-by: Dan Carpenter <dan.carpenter at oracle.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx at renesas.com>
---
sound/soc/sh/rcar/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c
index 2d0f98f..5a4d7e0 100644
--- a/sound/soc/sh/rcar/core.c
+++ b/sound/soc/sh/rcar/core.c
@@ -289,7 +289,7 @@ static void rsnd_dma_of_name(struct rsnd_dma *dma,
dst_mod = mod[index];
} else {
src_mod = mod[index];
- dst_mod = mod[index + 1];
+ dst_mod = mod[index - 1];
}
index = 0;
--
1.7.9.5
More information about the Alsa-devel
mailing list