summaryrefslogtreecommitdiff
path: root/sound/soc/soc-pcm.c
diff options
context:
space:
mode:
authorDaniel Mack <daniel@zonque.org>2018-05-19 08:01:19 +0200
committerMark Brown <broonie@kernel.org>2018-05-21 11:55:03 +0100
commit637917b1efe6a16cc4151f6508e82fc473814fe3 (patch)
treea3541572f304cb0b79b68809ca928d0381e0c2a0 /sound/soc/soc-pcm.c
parent9ff3036a60837b6ee0b7f70180f39ac29deb8cc2 (diff)
ASoC: core: fix return code in error message
Log the correct error code in case the .open() call to a component fails. Signed-off-by: Daniel Mack <daniel@zonque.org> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-pcm.c')
-rw-r--r--sound/soc/soc-pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index 87c9af2158d0..2df4719a84db 100644
--- a/sound/soc/soc-pcm.c
+++ b/sound/soc/soc-pcm.c
@@ -498,7 +498,7 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
if (__ret < 0) {
dev_err(component->dev,
"ASoC: can't open component %s: %d\n",
- component->name, ret);
+ component->name, __ret);
ret = __ret;
}
}