diff options
author | Alan Tull <r80115@freescale.com> | 2010-07-07 12:49:56 -0500 |
---|---|---|
committer | Alan Tull <r80115@freescale.com> | 2010-07-07 15:36:44 -0500 |
commit | 784d513997bd28f8d727f05cb70e136ef6d78ead (patch) | |
tree | 62e9ef733f9ab2d60379efd2f76a5f8e23e6bd71 /sound | |
parent | 54b9fd5ab6d24adacd79b95f541a9255ffbee4dd (diff) |
ENGR00124955 sgtl5000: fix audio power down pop
Some boards need a longer delay after powering off VAG.
Signed-off-by: Alan Tull <r80115@freescale.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/sgtl5000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/sgtl5000.c b/sound/soc/codecs/sgtl5000.c index 1016c4b40ce4..7c0b0f1a9af7 100644 --- a/sound/soc/codecs/sgtl5000.c +++ b/sound/soc/codecs/sgtl5000.c @@ -766,7 +766,7 @@ static int sgtl5000_set_bias_level(struct snd_soc_codec *codec, avoid pops. */ reg = sgtl5000_read(codec, SGTL5000_CHIP_ANA_POWER); if (reg & SGTL5000_VAG_POWERUP) - delay = 400; + delay = 600; reg &= ~SGTL5000_VAG_POWERUP; reg |= SGTL5000_DAC_POWERUP; reg |= SGTL5000_HP_POWERUP; |