From: Guennadi Liakhovetski Date: Thu, 17 Dec 2009 13:51:35 +0000 (+0100) Subject: ASoC: wm8974: fix a wrong bit definition X-Git-Tag: v2.6.32.3~88 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e255d3c8a816bfc9e365a39b8b00c4cd79671ee1;p=karo-tx-linux.git ASoC: wm8974: fix a wrong bit definition commit 48c03ce72f2665f79a3fe54fc6d71b8cc3d30803 upstream. The wm8974 datasheet defines BUFIOEN as bit 2. Signed-off-by: Guennadi Liakhovetski Acked-by: Liam Girdwood Signed-off-by: Mark Brown Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/soc/codecs/wm8974.c b/sound/soc/codecs/wm8974.c index 98d663afc97d..b0bd1c0ac1d0 100644 --- a/sound/soc/codecs/wm8974.c +++ b/sound/soc/codecs/wm8974.c @@ -47,7 +47,7 @@ static const u16 wm8974_reg[WM8974_CACHEREGNUM] = { }; #define WM8974_POWER1_BIASEN 0x08 -#define WM8974_POWER1_BUFIOEN 0x10 +#define WM8974_POWER1_BUFIOEN 0x04 struct wm8974_priv { struct snd_soc_codec codec;