Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 170249
b: refs/heads/master
c: 97cef58
h: refs/heads/master
i:
  170247: fef794c
v: v3
  • Loading branch information
Mark Brown committed Nov 23, 2009
1 parent e413915 commit eff0032
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dcdec639ad74f20427df82284f98b68f6ac7c0ae
refs/heads/master: 97cef58521288ade8d957e4d568a3d409dea7d64
20 changes: 17 additions & 3 deletions trunk/sound/soc/soc-dapm.c
Original file line number Diff line number Diff line change
Expand Up @@ -977,9 +977,19 @@ static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
if (!w->power_check)
continue;

power = w->power_check(w);
if (power)
sys_power = 1;
/* If we're suspending then pull down all the
* power. */
switch (event) {
case SND_SOC_DAPM_STREAM_SUSPEND:
power = 0;
break;

default:
power = w->power_check(w);
if (power)
sys_power = 1;
break;
}

if (w->power == power)
continue;
Expand All @@ -1003,8 +1013,12 @@ static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
case SND_SOC_DAPM_STREAM_RESUME:
sys_power = 1;
break;
case SND_SOC_DAPM_STREAM_SUSPEND:
sys_power = 0;
break;
case SND_SOC_DAPM_STREAM_NOP:
sys_power = codec->bias_level != SND_SOC_BIAS_STANDBY;
break;
default:
break;
}
Expand Down

0 comments on commit eff0032

Please sign in to comment.