mirror of
https://github.com/torvalds/linux.git
synced 2026-08-02 05:12:01 +02:00
ASoC: dapm: Avoid uninitialised variable warning
Commit4a75aae17b("ASoC: dapm: Add support for multi-CODEC CODEC to CODEC links") adds loops that iterate over multiple CODECs in snd_soc_dai_link_event. This also introduced a compiler warning for a potentially uninitialised variable in the case no CODECs are present. This should never be the case as the DAI link must by definition contain at least 1 CODEC however probably best to avoid the compiler warning by initialising ret to zero. Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Signed-off-by: Mark Brown <broonie@kernel.org> (cherry picked from commitfc269c0396)
This commit is contained in:
parent
2fcc8a3be8
commit
ee162843d2
|
|
@ -3623,7 +3623,7 @@ static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
|
|||
struct snd_pcm_hw_params *params = NULL;
|
||||
struct snd_pcm_runtime *runtime = NULL;
|
||||
unsigned int fmt;
|
||||
int ret;
|
||||
int ret = 0;
|
||||
|
||||
config = rtd->dai_link->params + rtd->params_select;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user