aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/soc-component.c
diff options
context:
space:
mode:
authorShengjiu Wang <shengjiu.wang@nxp.com>2020-07-16 13:07:08 +0800
committerMark Brown <broonie@kernel.org>2020-07-16 23:51:47 +0100
commitbe75db5772f93da3a6b52552f260ce9da8fbfff8 (patch)
tree54636a43136a18252c06863fd7bd4d344903df1f /sound/soc/soc-component.c
parentASoC: fsl: fsl-asoc-card: Trivial: Fix misspelling of 'exists' (diff)
downloadwireguard-linux-be75db5772f93da3a6b52552f260ce9da8fbfff8.tar.xz
wireguard-linux-be75db5772f93da3a6b52552f260ce9da8fbfff8.zip
ASoC: soc-component: Add missed return for calling soc_component_ret
Add missed return for calling soc_component_ret, otherwise the return value is wrong. Fixes: e2329eeba45f ("ASoC: soc-component: add soc_component_err()") Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com> Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/1594876028-1845-1-git-send-email-shengjiu.wang@nxp.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-component.c')
-rw-r--r--sound/soc/soc-component.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/soc-component.c b/sound/soc/soc-component.c
index af9909c5492f..9565a0dd7cb6 100644
--- a/sound/soc/soc-component.c
+++ b/sound/soc/soc-component.c
@@ -647,7 +647,7 @@ int snd_soc_pcm_component_sync_stop(struct snd_pcm_substream *substream)
ret = component->driver->sync_stop(component,
substream);
if (ret < 0)
- soc_component_ret(component, ret);
+ return soc_component_ret(component, ret);
}
}
@@ -705,7 +705,7 @@ int snd_soc_pcm_component_mmap(struct snd_pcm_substream *substream,
/* FIXME. it returns 1st mmap now */
for_each_rtd_components(rtd, i, component)
if (component->driver->mmap)
- soc_component_ret(
+ return soc_component_ret(
component,
component->driver->mmap(component,
substream, vma));
@@ -723,7 +723,7 @@ int snd_soc_pcm_component_new(struct snd_soc_pcm_runtime *rtd)
if (component->driver->pcm_construct) {
ret = component->driver->pcm_construct(component, rtd);
if (ret < 0)
- soc_component_ret(component, ret);
+ return soc_component_ret(component, ret);
}
}