mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 10:02:02 +02:00
ASoC: Intel: atom: remove conditional return with no effect
Both branches of the check return the same value, so the check has no effect. Remove it and return the value directly. This is the result of running the Coccinelle script from scripts/coccinelle/misc/cond_return_no_effect.cocci. Signed-off-by: Sang-Heon Jeon <ekffu200098@gmail.com> Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com> Link: https://patch.msgid.link/20260725160344.916838-3-ekffu200098@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
3799a56da8
commit
52c0957729
|
|
@ -236,12 +236,7 @@ static int sst_platform_alloc_stream(struct snd_pcm_substream *substream,
|
|||
|
||||
stream->stream_info.str_id = str_params.stream_id;
|
||||
|
||||
ret_val = stream->ops->open(sst->dev, &str_params);
|
||||
if (ret_val <= 0)
|
||||
return ret_val;
|
||||
|
||||
|
||||
return ret_val;
|
||||
return stream->ops->open(sst->dev, &str_params);
|
||||
}
|
||||
|
||||
static void sst_period_elapsed(void *arg)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user