Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 57d9d7c3 authored by Hans de Goede's avatar Hans de Goede Committed by Mark Brown
Browse files

ASoC: rt5651: Remove "JD Power" dapm supply



Remove the "JD power" dapm supply which gets force-enabled once when
using jack-detect and never gets disabled again.

Since the PWR_JD_M bit simply needs to be always on when using jack-detect
there is no need to have it tracked by dapm, instead we can simply set it
to 1 once when initializing the jack-detection.

Tested-by: default avatarCarlo Caione <carlo@endlessm.com>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3d7719d3
Loading
Loading
Loading
Loading
+4 −5
Original line number Original line Diff line number Diff line
@@ -869,10 +869,6 @@ static const struct snd_soc_dapm_widget rt5651_dapm_widgets[] = {
	SND_SOC_DAPM_SUPPLY_S("ADC ASRC", 1, RT5651_PLL_MODE_2,
	SND_SOC_DAPM_SUPPLY_S("ADC ASRC", 1, RT5651_PLL_MODE_2,
			      11, 0, NULL, 0),
			      11, 0, NULL, 0),


	/* Input Side */
	SND_SOC_DAPM_SUPPLY("JD Power", RT5651_PWR_ANLG2,
		RT5651_PWM_JD_M_BIT, 0, NULL, 0),

	/* micbias */
	/* micbias */
	SND_SOC_DAPM_SUPPLY("LDO", RT5651_PWR_ANLG1,
	SND_SOC_DAPM_SUPPLY("LDO", RT5651_PWR_ANLG1,
			RT5651_PWR_LDO_BIT, 0, NULL, 0),
			RT5651_PWR_LDO_BIT, 0, NULL, 0),
@@ -1616,7 +1612,10 @@ static int rt5651_set_jack(struct snd_soc_component *component,
		return -EINVAL;
		return -EINVAL;
	}
	}


	snd_soc_dapm_force_enable_pin(dapm, "JD Power");
	/* Enable jack detect power */
	snd_soc_component_update_bits(component, RT5651_PWR_ANLG2,
		RT5651_PWR_JD_M, RT5651_PWR_JD_M);

	snd_soc_dapm_force_enable_pin(dapm, "LDO");
	snd_soc_dapm_force_enable_pin(dapm, "LDO");
	snd_soc_dapm_sync(dapm);
	snd_soc_dapm_sync(dapm);