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

Commit 3e59aaa7 authored by Anuj Aggarwal's avatar Anuj Aggarwal Committed by Mark Brown
Browse files

ASoC: AIC23: Fixing writes to non-existing registers in resume function



Commit e9ff5eb2 (Fixing infinite loop in resume path) uses wrong AIC23
register in resume function because of which register writes happen
on some non-existing registers.

Signed-off-by: default avatarAnuj Aggarwal <anuj.aggarwal@ti.com>
Acked-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 40aa7030
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -627,7 +627,7 @@ static int tlv320aic23_resume(struct platform_device *pdev)
	u16 reg;

	/* Sync reg_cache with the hardware */
	for (reg = 0; reg < TLV320AIC23_RESET; reg++) {
	for (reg = 0; reg <= TLV320AIC23_ACTIVE; reg++) {
		u16 val = tlv320aic23_read_reg_cache(codec, reg);
		tlv320aic23_write(codec, reg, val);
	}