aboutsummaryrefslogtreecommitdiffstats
path: root/patches/0145-ASoC-rsnd-don-t-use-io-mod-directly.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/0145-ASoC-rsnd-don-t-use-io-mod-directly.patch')
-rw-r--r--patches/0145-ASoC-rsnd-don-t-use-io-mod-directly.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/patches/0145-ASoC-rsnd-don-t-use-io-mod-directly.patch b/patches/0145-ASoC-rsnd-don-t-use-io-mod-directly.patch
new file mode 100644
index 00000000000000..41a2bd13ab11b5
--- /dev/null
+++ b/patches/0145-ASoC-rsnd-don-t-use-io-mod-directly.patch
@@ -0,0 +1,32 @@
+From caa430bc903329012f547ea1e8bdc9fdad7704e8 Mon Sep 17 00:00:00 2001
+From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
+Date: Tue, 31 Oct 2017 00:38:09 +0000
+Subject: [PATCH 0145/1795] ASoC: rsnd: don't use io->mod[] directly
+
+We have rsnd_io_to_mod() macro. Let's use it
+
+Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
+Signed-off-by: Mark Brown <broonie@kernel.org>
+(cherry picked from commit 138f878647f2ac0d7700f669b860cb130306e062)
+Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
+Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
+---
+ 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 e9b0b0f5f0ee..b338c0009506 100644
+--- a/sound/soc/sh/rcar/core.c
++++ b/sound/soc/sh/rcar/core.c
+@@ -407,7 +407,7 @@ struct rsnd_mod *rsnd_mod_next(int *iterator,
+
+ for (; *iterator < max; (*iterator)++) {
+ type = (array) ? array[*iterator] : *iterator;
+- mod = io->mod[type];
++ mod = rsnd_io_to_mod(io, type);
+ if (!mod)
+ continue;
+
+--
+2.19.0
+