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:
Sang-Heon Jeon 2026-07-26 01:03:41 +09:00 committed by Mark Brown
parent 3799a56da8
commit 52c0957729
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -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)