diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-12-17 09:27:30 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-12-17 09:27:30 -0800 |
commit | 74280817e5013af83089a5dd511f6fb3b2362e09 (patch) | |
tree | d4c9eccad139dc295db915302270d05dff62072c /sound/soc/soc-dapm.c | |
parent | a3383e8372c0c11238f9bb9777929bfc3a2d320a (diff) | |
parent | 5aad6c5f7733b94e666e3bf8b57beb7bbee15886 (diff) | |
download | talos-op-linux-74280817e5013af83089a5dd511f6fb3b2362e09.tar.gz talos-op-linux-74280817e5013af83089a5dd511f6fb3b2362e09.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6:
ALSA: hda - Fix conflict of Mic Boot controls
ALSA: HDA: Enable subwoofer on Asus G73Jw
ALSA: HDA: Fix auto-mute on Lenovo Edge 14
ASoC: Fix bias power down of non-DAPM codec
ASoC: WM8580: Fix R8 initial value
ASoC: fix deemphasis control in wm8904/55/60 codecs
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r-- | sound/soc/soc-dapm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 75ed6491222d..c721502833bc 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -944,6 +944,9 @@ 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_STOP: + sys_power = !!codec->active; + break; case SND_SOC_DAPM_STREAM_SUSPEND: sys_power = 0; break; |