forked from Minki/linux
Merge remote-tracking branch 'asoc/fix/core' into tmp
This commit is contained in:
commit
05780d7771
@ -1023,7 +1023,7 @@ int dapm_regulator_event(struct snd_soc_dapm_widget *w,
|
|||||||
|
|
||||||
if (SND_SOC_DAPM_EVENT_ON(event)) {
|
if (SND_SOC_DAPM_EVENT_ON(event)) {
|
||||||
if (w->invert & SND_SOC_DAPM_REGULATOR_BYPASS) {
|
if (w->invert & SND_SOC_DAPM_REGULATOR_BYPASS) {
|
||||||
ret = regulator_allow_bypass(w->regulator, true);
|
ret = regulator_allow_bypass(w->regulator, false);
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
dev_warn(w->dapm->dev,
|
dev_warn(w->dapm->dev,
|
||||||
"ASoC: Failed to bypass %s: %d\n",
|
"ASoC: Failed to bypass %s: %d\n",
|
||||||
@ -1033,7 +1033,7 @@ int dapm_regulator_event(struct snd_soc_dapm_widget *w,
|
|||||||
return regulator_enable(w->regulator);
|
return regulator_enable(w->regulator);
|
||||||
} else {
|
} else {
|
||||||
if (w->invert & SND_SOC_DAPM_REGULATOR_BYPASS) {
|
if (w->invert & SND_SOC_DAPM_REGULATOR_BYPASS) {
|
||||||
ret = regulator_allow_bypass(w->regulator, false);
|
ret = regulator_allow_bypass(w->regulator, true);
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
dev_warn(w->dapm->dev,
|
dev_warn(w->dapm->dev,
|
||||||
"ASoC: Failed to unbypass %s: %d\n",
|
"ASoC: Failed to unbypass %s: %d\n",
|
||||||
@ -3039,6 +3039,14 @@ snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
|
|||||||
w->name, ret);
|
w->name, ret);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (w->invert & SND_SOC_DAPM_REGULATOR_BYPASS) {
|
||||||
|
ret = regulator_allow_bypass(w->regulator, true);
|
||||||
|
if (ret != 0)
|
||||||
|
dev_warn(w->dapm->dev,
|
||||||
|
"ASoC: Failed to unbypass %s: %d\n",
|
||||||
|
w->name, ret);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case snd_soc_dapm_clock_supply:
|
case snd_soc_dapm_clock_supply:
|
||||||
#ifdef CONFIG_CLKDEV_LOOKUP
|
#ifdef CONFIG_CLKDEV_LOOKUP
|
||||||
|
Loading…
Reference in New Issue
Block a user