diff options
author | Xinyu Chen <xinyu.chen@freescale.com> | 2012-07-31 14:12:06 +0800 |
---|---|---|
committer | Xinyu Chen <xinyu.chen@freescale.com> | 2012-07-31 14:35:55 +0800 |
commit | 091604c85f017199cae9d437545a96157ab063e0 (patch) | |
tree | 2323313bf4e4dfb690f31c8af1256b2fbcc46916 /sound | |
parent | 51e5dcf9e8b61a0af97852769c4b7ae1c01951d3 (diff) |
ENGR00217401 wm8962: fix build warning
Fix two build warnings on wm8962
Signed-off-by: Xinyu Chen <Xinyu.chen@freescale.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wm8962.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index 190720ec029d..8558be580ee3 100644 --- a/sound/soc/codecs/wm8962.c +++ b/sound/soc/codecs/wm8962.c @@ -3414,7 +3414,7 @@ static int wm8962_set_fll(struct snd_soc_codec *codec, int fll_id, int source, unsigned int Fref, unsigned int Fout) { struct wm8962_priv *wm8962 = snd_soc_codec_get_drvdata(codec); - struct _fll_div fll_div; + struct _fll_div fll_div = {0}; unsigned long timeout; int ret; int fll1 = snd_soc_read(codec, WM8962_FLL_CONTROL_1) & WM8962_FLL_ENA; |