From: Joerg Roedel Date: Thu, 15 Dec 2011 17:24:54 +0000 (+0100) Subject: ASoC: Fix compile error in sound/soc/mid-x86/sst_platform.c X-Git-Tag: firefly_0821_release~3680^2~2691^2~237^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c45471eac2bdc271df40963ac8448d76ac434872;p=firefly-linux-kernel-4.4.55.git ASoC: Fix compile error in sound/soc/mid-x86/sst_platform.c The variable ret_val is used but not declared. This causes the following compile error: sound/soc/mid-x86/sst_platform.c: In function ‘sst_platform_open’: sound/soc/mid-x86/sst_platform.c:274:2: error: ‘ret_val’ undeclared (first use in this function) sound/soc/mid-x86/sst_platform.c:274:2: note: each undeclared identifier is reported only once for each function it appears in make[1]: *** [sound/soc/mid-x86/sst_platform.o] Error 1 Fix this. Signed-off-by: Joerg Roedel Signed-off-by: Takashi Iwai --- diff --git a/sound/soc/mid-x86/sst_platform.c b/sound/soc/mid-x86/sst_platform.c index 24f947146947..11c39c548a06 100644 --- a/sound/soc/mid-x86/sst_platform.c +++ b/sound/soc/mid-x86/sst_platform.c @@ -267,6 +267,7 @@ static int sst_platform_open(struct snd_pcm_substream *substream) { struct snd_pcm_runtime *runtime = substream->runtime; struct sst_runtime_stream *stream; + int ret_val; pr_debug("sst_platform_open called\n");