[alsa-devel] [PATCH] ASoC: Squash error codes from regmap down to -1 on read
9 Oct
2011
9 Oct
'11
3:06 p.m.
The ASoC code always uses -1 as the error code due to reporting errors in band with the value. Ensure we don't confuse anything by making sure we don't pass actual error codes back into the rest of the code on read.
Signed-off-by: Mark Brown broonie@opensource.wolfsonmicro.com --- sound/soc/soc-io.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/soc-io.c b/sound/soc/soc-io.c index d6535b8..c8610cb 100644 --- a/sound/soc/soc-io.c +++ b/sound/soc/soc-io.c @@ -56,7 +56,7 @@ static unsigned int hw_read(struct snd_soc_codec *codec, unsigned int reg) if (ret == 0) return val; else - return ret; + return -1; }
ret = snd_soc_cache_read(codec, reg, &val);
--
1.7.6.3
4823
Age (days ago)
4823
Last active (days ago)
0 comments
1 participants
participants (1)
-
Mark Brown