Commit 740ad6c3 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: rcar: fixup rsnd_platform_call() return value

Un-implemented platform callback is not error.
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 55e5b6fd
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
* rsnd_platform functions * rsnd_platform functions
*/ */
#define rsnd_platform_call(priv, dai, func, param...) \ #define rsnd_platform_call(priv, dai, func, param...) \
(!(priv->info->func) ? -ENODEV : \ (!(priv->info->func) ? 0 : \
priv->info->func(param)) priv->info->func(param))
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment