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

Commit 8d01370f authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Mark Brown
Browse files

ASoC: es8328: Cleanup manual bias level transitions



Set the CODEC driver's suspend_bias_off flag rather than manually going to
SND_SOC_BIAS_OFF in suspend and SND_SOC_BIAS_STANDBY in resume. This makes
the code a bit shorter and cleaner.

Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent bade5f09
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -602,8 +602,6 @@ static int es8328_suspend(struct snd_soc_codec *codec)

	es8328 = snd_soc_codec_get_drvdata(codec);

	es8328_set_bias_level(codec, SND_SOC_BIAS_OFF);

	clk_disable_unprepare(es8328->clk);

	ret = regulator_bulk_disable(ARRAY_SIZE(es8328->supplies),
@@ -643,7 +641,6 @@ static int es8328_resume(struct snd_soc_codec *codec)
		return ret;
	}

	es8328_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
	return 0;
}

@@ -712,6 +709,8 @@ static struct snd_soc_codec_driver es8328_codec_driver = {
	.resume		  = es8328_resume,
	.remove		  = es8328_remove,
	.set_bias_level	  = es8328_set_bias_level,
	.suspend_bias_off = true,

	.controls	  = es8328_snd_controls,
	.num_controls	  = ARRAY_SIZE(es8328_snd_controls),
	.dapm_widgets	  = es8328_dapm_widgets,