From: Vijendar Mukunda Date: Fri, 25 Feb 2022 19:30:25 +0000 (+0530) Subject: ASoC: amd: vangogh: fix uninitialized symbol warning in machine driver X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6f989800639a7a29ab9a02e165b04dc144dd4f2b;p=linux.git ASoC: amd: vangogh: fix uninitialized symbol warning in machine driver Fixed below smatch static checker warning. sound/soc/amd/vangogh/acp5x-mach.c:190 acp5x_cs35l41_hw_params() error: uninitialized symbol 'ret'. Reported-by: Dan Carpenter Signed-off-by: Vijendar Mukunda Link: https://lore.kernel.org/r/20220225193054.24916-4-Vijendar.Mukunda@amd.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/amd/vangogh/acp5x-mach.c b/sound/soc/amd/vangogh/acp5x-mach.c index 16b7c3f70baff..25b5166b23f8d 100644 --- a/sound/soc/amd/vangogh/acp5x-mach.c +++ b/sound/soc/amd/vangogh/acp5x-mach.c @@ -165,6 +165,7 @@ static int acp5x_cs35l41_hw_params(struct snd_pcm_substream *substream, unsigned int num_codecs = rtd->num_codecs; unsigned int bclk_val; + ret = 0; for (i = 0; i < num_codecs; i++) { codec_dai = asoc_rtd_to_codec(rtd, i); if ((strcmp(codec_dai->name, "spi-VLV1776:00") == 0) ||