From: Colin Ian King Date: Wed, 13 Nov 2024 13:08:07 +0000 (+0000) Subject: ASoC: SOF: ipc4-topology: remove redundant assignment to variable ret X-Git-Tag: v6.13-rc1~123^2~2^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb5e67c9d03b4a65fd43acc18cbafffff15bd8f9;p=thirdparty%2Fkernel%2Flinux.git ASoC: SOF: ipc4-topology: remove redundant assignment to variable ret The variable ret is being assigned a zero value however the value is never read because ret is being re-assigned later after the end of the switch statement. The assignment is redundant and can be removed. Signed-off-by: Colin Ian King Link: https://patch.msgid.link/20241113130807.1386754-1-colin.i.king@gmail.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/ipc4-topology.c b/sound/soc/sof/ipc4-topology.c index 56427d6e36798..624f52d2183c0 100644 --- a/sound/soc/sof/ipc4-topology.c +++ b/sound/soc/sof/ipc4-topology.c @@ -755,7 +755,6 @@ static int sof_ipc4_widget_setup_comp_dai(struct snd_sof_widget *swidget) * It is fine to call kfree(ipc4_copier->copier_config) since * ipc4_copier->copier_config is null. */ - ret = 0; break; }