mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-19 20:12:32 +00:00
ASoC: simple-card-utils: fixup simple_util_startup() error handling
It should use "goto" instead of "return" Fixes: 5ca2ab459817 ("ASoC: simple-card-utils: Add new system-clock-fixed flag") Reported-by: kernel test robot <lkp@intel.com> Reported-by: Dan Carpenter <dan.carpenter@linaro.org> Closes: https://lore.kernel.org/all/202309141205.ITZeDJxV-lkp@intel.com/ Closes: https://lore.kernel.org/all/202309151840.au9Aa2W4-lkp@intel.com/ Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/87v8c76jnz.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
fb0b8d2997
commit
69cf63b656
@ -310,7 +310,8 @@ int asoc_simple_startup(struct snd_pcm_substream *substream)
|
||||
if (fixed_sysclk % props->mclk_fs) {
|
||||
dev_err(rtd->dev, "fixed sysclk %u not divisible by mclk_fs %u\n",
|
||||
fixed_sysclk, props->mclk_fs);
|
||||
return -EINVAL;
|
||||
ret = -EINVAL;
|
||||
goto codec_err;
|
||||
}
|
||||
ret = snd_pcm_hw_constraint_minmax(substream->runtime, SNDRV_PCM_HW_PARAM_RATE,
|
||||
fixed_rate, fixed_rate);
|
||||
|
Loading…
x
Reference in New Issue
Block a user