Skip to content

Commit

Permalink
ASoC: wm8974: fix a wrong bit definition
Browse files Browse the repository at this point in the history
The wm8974 datasheet defines BUFIOEN as bit 2.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: stable@kernel.org
  • Loading branch information
Guennadi Liakhovetski authored and Mark Brown committed Dec 18, 2009
1 parent 75b46c1 commit 48c03ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/wm8974.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 48c03ce

Please sign in to comment.