diff mbox

ASoC: Restore idle_bias_off initialization

Message ID 1408887415-7942-1-git-send-email-lars@metafoo.de (mailing list archive)
State Accepted
Commit 5819c2fa55d4a6eaf7fe025a393dce98fc4b2116
Headers show

Commit Message

Lars-Peter Clausen Aug. 24, 2014, 1:36 p.m. UTC
This was accidentally lost in commit f1d45cc3ae96 ("ASoC: Consolidate
platform and CODEC probe/remove").

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 sound/soc/soc-core.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Mark Brown Aug. 26, 2014, 8:15 a.m. UTC | #1
On Sun, Aug 24, 2014 at 03:36:55PM +0200, Lars-Peter Clausen wrote:
> This was accidentally lost in commit f1d45cc3ae96 ("ASoC: Consolidate
> platform and CODEC probe/remove").

Applied, thanks.
diff mbox

Patch

diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index e982cb0..4974b4f 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -4010,6 +4010,7 @@  static int snd_soc_component_initialize(struct snd_soc_component *component,
 	dapm->dev = dev;
 	dapm->component = component;
 	dapm->bias_level = SND_SOC_BIAS_OFF;
+	dapm->idle_bias_off = true;
 	if (driver->seq_notifier)
 		dapm->seq_notifier = snd_soc_component_seq_notifier;
 	if (driver->stream_event)
@@ -4399,6 +4400,7 @@  int snd_soc_register_codec(struct device *dev,
 		codec->component.read = snd_soc_codec_drv_read;
 	codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
 	codec->dapm.codec = codec;
+	codec->dapm.idle_bias_off = codec_drv->idle_bias_off;
 	if (codec_drv->seq_notifier)
 		codec->dapm.seq_notifier = codec_drv->seq_notifier;
 	if (codec_drv->set_bias_level)