summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-dapm.c
diff options
context:
space:
mode:
authorMark Brown2012-01-25 20:55:22 +0100
committerMark Brown2012-01-26 17:22:53 +0100
commitafe62367e02fd7b83a6a824a20ad432fa5b00040 (patch)
tree1ff0586c9d9ec3d5453babcdb511962b6d262ad2 /sound/soc/soc-dapm.c
parentASoC: dapm: Drop runtime PM references asynchronously (diff)
downloadkernel-qcow2-linux-afe62367e02fd7b83a6a824a20ad432fa5b00040.tar.gz
kernel-qcow2-linux-afe62367e02fd7b83a6a824a20ad432fa5b00040.tar.xz
kernel-qcow2-linux-afe62367e02fd7b83a6a824a20ad432fa5b00040.zip
ASoC: dapm: Ignore isolated signal generators for power purposes
A signal generator has no power control itself and so shouldn't cause a power up of the device. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r--sound/soc/soc-dapm.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index 4973545f2a32..ec58a3146569 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -1435,9 +1435,13 @@ static int dapm_power_widgets(struct snd_soc_dapm_context *dapm, int event)
/* Supplies and micbiases only bring the
* context up to STANDBY as unless something
* else is active and passing audio they
- * generally don't require full power.
+ * generally don't require full power. Signal
+ * generators are virtual pins and have no
+ * power impact themselves.
*/
switch (w->id) {
+ case snd_soc_dapm_siggen:
+ break;
case snd_soc_dapm_supply:
case snd_soc_dapm_regulator_supply:
case snd_soc_dapm_micbias: