From: Kuninori Morimoto Date: Wed, 11 Jun 2014 06:41:03 +0000 (-0700) Subject: ASoC: rsnd: fixup index of src/dst mod when capture X-Git-Tag: v3.16-rc2~15^2~1^2^5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4cf612780cec81317a0278b28679a8b69ea8f09c;p=karo-tx-linux.git ASoC: rsnd: fixup index of src/dst mod when capture Index of dma name should use -1, not +1 when capture case. Thank you Dan. Reported-by: Dan Carpenter Signed-off-by: Kuninori Morimoto Signed-off-by: Mark Brown --- diff --git a/sound/soc/sh/rcar/core.c b/sound/soc/sh/rcar/core.c index 91880156e1ae..4e86265f625c 100644 --- a/sound/soc/sh/rcar/core.c +++ b/sound/soc/sh/rcar/core.c @@ -315,7 +315,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;