[alsa-devel] [PATCH] ASoC: fix uninitialised variable in siu_dai.c
Guennadi Liakhovetski
g.liakhovetski at gmx.de
Mon May 24 10:55:16 CEST 2010
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski at gmx.de>
---
Strangely, the compiler doesn't warn about this one, but I really don't
see how this can be correct. Am I being blind?
sound/soc/sh/siu_dai.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sound/soc/sh/siu_dai.c b/sound/soc/sh/siu_dai.c
index d86ee1b..eeed5ed 100644
--- a/sound/soc/sh/siu_dai.c
+++ b/sound/soc/sh/siu_dai.c
@@ -588,6 +588,8 @@ static int siu_dai_prepare(struct snd_pcm_substream *substream,
ret = siu_dai_spbstart(port_info);
if (ret < 0)
goto fail;
+ } else {
+ ret = 0;
}
port_info->play_cap |= self;
--
1.6.2.4
More information about the Alsa-devel
mailing list