diff mbox

ASoC: rt5640: Change the setting method of idle_bias_off

Message ID 1396232470-11979-1-git-send-email-oder_chiou@realtek.com (mailing list archive)
State Accepted
Commit cabb5f581e1d41bd7eb89e44768df5ee4f19b0ce
Headers show

Commit Message

Oder Chiou March 31, 2014, 2:21 a.m. UTC
The patch moves the idle_bias_off setting to struct "soc_codec_dev_rt5640".

Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
---
 sound/soc/codecs/rt5640.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mark Brown March 31, 2014, 6:29 p.m. UTC | #1
On Mon, Mar 31, 2014 at 10:21:10AM +0800, Oder Chiou wrote:
> The patch moves the idle_bias_off setting to struct "soc_codec_dev_rt5640".

Applied, thanks.
diff mbox

Patch

diff --git a/sound/soc/codecs/rt5640.c b/sound/soc/codecs/rt5640.c
index b088f14..6b8778f 100644
--- a/sound/soc/codecs/rt5640.c
+++ b/sound/soc/codecs/rt5640.c
@@ -1895,7 +1895,6 @@  static int rt5640_probe(struct snd_soc_codec *codec)
 		return ret;
 	}
 
-	codec->dapm.idle_bias_off = 1;
 	rt5640_set_bias_level(codec, SND_SOC_BIAS_OFF);
 
 	snd_soc_update_bits(codec, RT5640_DUMMY1, 0x0301, 0x0301);
@@ -2004,6 +2003,7 @@  static struct snd_soc_codec_driver soc_codec_dev_rt5640 = {
 	.suspend = rt5640_suspend,
 	.resume = rt5640_resume,
 	.set_bias_level = rt5640_set_bias_level,
+	.idle_bias_off = true,
 	.controls = rt5640_snd_controls,
 	.num_controls = ARRAY_SIZE(rt5640_snd_controls),
 	.dapm_widgets = rt5640_dapm_widgets,