public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* sound/soc/codecs/wm9081.c compiler warning
@ 2009-07-15  6:30 Jaswinder Singh Rajput
  2009-07-15  9:11 ` Takashi Iwai
  2009-07-15 10:32 ` Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Jaswinder Singh Rajput @ 2009-07-15  6:30 UTC (permalink / raw)
  To: Mark Brown, Takashi Iwai, LKML

I am getting this compiler warning in linus tree:

  CC [M]  sound/soc/codecs/wm9081.o
sound/soc/codecs/wm9081.c: In function ‘configure_clock’:
sound/soc/codecs/wm9081.c:674: warning: ‘new_sysclk’ may be used uninitialized in this function

This fixes the warning in my case, hope this will be helpful :

diff --git a/sound/soc/codecs/wm9081.c b/sound/soc/codecs/wm9081.c
index 86fc57e..77a7997 100644
--- a/sound/soc/codecs/wm9081.c
+++ b/sound/soc/codecs/wm9081.c
@@ -696,6 +696,7 @@ static int configure_clock(struct snd_soc_codec *codec)
 		 * not the case, though care must be taken with free
 		 * running mode.
 		 */
+		new_sysclk = 12288000;
 		if (wm9081->master && wm9081->bclk) {
 			/* Make sure we can generate CLK_SYS and BCLK
 			 * and that we've got 3MHz for optimal
@@ -714,8 +715,6 @@ static int configure_clock(struct snd_soc_codec *codec)
 				if (new_sysclk > 3000000)
 					break;
 			}
-		} else {
-			new_sysclk = 12288000;
 		}
 
 		ret = wm9081_set_fll(codec, WM9081_SYSCLK_FLL_MCLK,

--
JSR


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-07-15 10:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-15  6:30 sound/soc/codecs/wm9081.c compiler warning Jaswinder Singh Rajput
2009-07-15  9:11 ` Takashi Iwai
2009-07-15  9:14   ` Mark Brown
2009-07-15 10:32 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox