Message ID | 1431306246.8012.1.camel@ingics.com (mailing list archive) |
---|---|
State | Accepted |
Commit | ebb6ad73e645b8f2d098dd3c41d2ff0da4146a02 |
Headers | show |
On Mon, May 11, 2015 at 09:04:06AM +0800, Axel Lin wrote:
> VMID Control 0 BIT[2:1] is VMID Divider Enable and Select
Applied, thanks.
diff --git a/sound/soc/codecs/wm8903.h b/sound/soc/codecs/wm8903.h index db94931..0bb4a64 100644 --- a/sound/soc/codecs/wm8903.h +++ b/sound/soc/codecs/wm8903.h @@ -172,7 +172,7 @@ extern int wm8903_mic_detect(struct snd_soc_codec *codec, #define WM8903_VMID_BUF_ENA_WIDTH 1 /* VMID_BUF_ENA */ #define WM8903_VMID_RES_50K 2 -#define WM8903_VMID_RES_250K 3 +#define WM8903_VMID_RES_250K 4 #define WM8903_VMID_RES_5K 6 /*
VMID Control 0 BIT[2:1] is VMID Divider Enable and Select 00 = VMID disabled (for OFF mode) 01 = 2 x 50k? divider (for normal operation) 10 = 2 x 250k? divider (for low power standby) 11 = 2 x 5k? divider (for fast start-up) So WM8903_VMID_RES_250K should be 2 << 1, which is 4. Signed-off-by: Axel Lin <axel.lin@ingics.com> --- sound/soc/codecs/wm8903.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)