summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/tas2552.c
diff options
context:
space:
mode:
authorFabio Estevam2017-04-11 15:42:02 +0200
committerMark Brown2017-04-11 20:35:58 +0200
commit6f2daf82fa1e92fcc10ec34a1d0ffe85a00bf794 (patch)
treeebda9cde5400a1a494e7200f25860a06095a10e5 /sound/soc/codecs/tas2552.c
parentASoC: tas2552: Improve DT binding document example (diff)
downloadkernel-qcow2-linux-6f2daf82fa1e92fcc10ec34a1d0ffe85a00bf794.tar.gz
kernel-qcow2-linux-6f2daf82fa1e92fcc10ec34a1d0ffe85a00bf794.tar.xz
kernel-qcow2-linux-6f2daf82fa1e92fcc10ec34a1d0ffe85a00bf794.zip
ASoC: tas2552: Return the real error code
In the case of error in tas2552_codec_probe() we should better propagate the real error code instead of always returning '-EIO'. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/tas2552.c')
-rw-r--r--sound/soc/codecs/tas2552.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tas2552.c b/sound/soc/codecs/tas2552.c
index baf455e8c2f7..fd5251e98eca 100644
--- a/sound/soc/codecs/tas2552.c
+++ b/sound/soc/codecs/tas2552.c
@@ -611,7 +611,7 @@ probe_fail:
regulator_bulk_disable(ARRAY_SIZE(tas2552->supplies),
tas2552->supplies);
- return -EIO;
+ return ret;
}
static int tas2552_codec_remove(struct snd_soc_codec *codec)