mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
ASoC: wm8974: fix a wrong bit definition
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
This commit is contained in:
parent
75b46c1321
commit
48c03ce72f
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ static const u16 wm8974_reg[WM8974_CACHEREGNUM] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#define WM8974_POWER1_BIASEN 0x08
|
#define WM8974_POWER1_BIASEN 0x08
|
||||||
#define WM8974_POWER1_BUFIOEN 0x10
|
#define WM8974_POWER1_BUFIOEN 0x04
|
||||||
|
|
||||||
struct wm8974_priv {
|
struct wm8974_priv {
|
||||||
struct snd_soc_codec codec;
|
struct snd_soc_codec codec;
|
||||||
|
|
Loading…
Reference in a new issue