]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ASoC: dapm: Use generic power check for everything except DAIs
authorMark Brown <broonie@linaro.org>
Thu, 18 Jul 2013 21:03:01 +0000 (22:03 +0100)
committerMark Brown <broonie@linaro.org>
Wed, 24 Jul 2013 13:56:15 +0000 (14:56 +0100)
As noticed by Lars-Peter Clausen since the move to using widgets to hook
into the DAIs we no longer directly manage the power of AIF or DAC/ADC
widgets from the stream integration so they can just use the generic power
checks instead of the custom stream integration ones they currently do.

Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/soc-dapm.c

index bd16010441cc16fdb26aba40ae5326c427705e81..378655839f7466891cedf536765a1bf899dbea6a 100644 (file)
@@ -3126,16 +3126,16 @@ snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
        case snd_soc_dapm_value_mux:
                w->power_check = dapm_generic_check_power;
                break;
-       case snd_soc_dapm_adc:
-       case snd_soc_dapm_aif_out:
        case snd_soc_dapm_dai_out:
                w->power_check = dapm_adc_check_power;
                break;
-       case snd_soc_dapm_dac:
-       case snd_soc_dapm_aif_in:
        case snd_soc_dapm_dai_in:
                w->power_check = dapm_dac_check_power;
                break;
+       case snd_soc_dapm_adc:
+       case snd_soc_dapm_aif_out:
+       case snd_soc_dapm_dac:
+       case snd_soc_dapm_aif_in:
        case snd_soc_dapm_pga:
        case snd_soc_dapm_out_drv:
        case snd_soc_dapm_input: