aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2014-04-19 04:43:57 -0400
committerMark Brown <broonie@linaro.org>2014-04-21 06:21:25 -0400
commitab2874a8faac9db00eb03ec831b9a983627fb2d1 (patch)
tree3cc7f1007d4c3ff3b62fe6a06fefd6bc348aa782
parentb7580cde704920da69e50d133cea16eca77ff3bd (diff)
ASoC: Change return type of snd_soc_write() to int
The CODEC's write callback can return a negative error code, make sure to pass that on correctly. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--include/sound/soc.h4
-rw-r--r--sound/soc/soc-io.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 81bc331c520f..192ddc40ae0a 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -1125,8 +1125,8 @@ static inline struct snd_soc_platform *snd_soc_component_to_platform(
1125 1125
1126/* codec IO */ 1126/* codec IO */
1127unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg); 1127unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg);
1128unsigned int snd_soc_write(struct snd_soc_codec *codec, 1128int snd_soc_write(struct snd_soc_codec *codec, unsigned int reg,
1129 unsigned int reg, unsigned int val); 1129 unsigned int val);
1130 1130
1131/* device driver data */ 1131/* device driver data */
1132 1132
diff --git a/sound/soc/soc-io.c b/sound/soc/soc-io.c
index 31ddd52c72fc..5fb85783b044 100644
--- a/sound/soc/soc-io.c
+++ b/sound/soc/soc-io.c
@@ -31,8 +31,8 @@ unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
31} 31}
32EXPORT_SYMBOL_GPL(snd_soc_read); 32EXPORT_SYMBOL_GPL(snd_soc_read);
33 33
34unsigned int snd_soc_write(struct snd_soc_codec *codec, 34int snd_soc_write(struct snd_soc_codec *codec, unsigned int reg,
35 unsigned int reg, unsigned int val) 35 unsigned int val)
36{ 36{
37 dev_dbg(codec->dev, "write %x = %x\n", reg, val); 37 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
38 trace_snd_soc_reg_write(codec, reg, val); 38 trace_snd_soc_reg_write(codec, reg, val);