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

Commit ed36428e authored by Ravindranath Thiyagarajan's avatar Ravindranath Thiyagarajan Committed by Gerrit - the friendly Code Review server
Browse files

regulator: qpnp-labibb-regulator: Fix IBB power up delay configuration



Currently, power up delay for IBB is programmed in the incorrect
register locations [4:3] of IBB_PWRUP_PWRDN_CTL_1. Fix this by
changing it to the correct register locations [5:4] of
IBB_PWRUP_PWRDN_CTL_1.

CRs-Fixed: 880446
Change-Id: I3beaf8cef749f3f1b0c77834b93f871de982e219
Signed-off-by: default avatarRavindranath Thiyagarajan <rthiyaga@codeaurora.org>
parent efc2b629
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@
#define IBB_PWRUP_PWRDN_CTL_1_DLY1_BITS	2
#define IBB_PWRUP_PWRDN_CTL_1_DLY1_MASK	\
	((1 << IBB_PWRUP_PWRDN_CTL_1_DLY1_BITS) - 1)
#define IBB_PWRUP_PWRDN_CTL_1_DLY1_SHIFT	3
#define IBB_PWRUP_PWRDN_CTL_1_DLY1_SHIFT	4
#define IBB_PWRUP_PWRDN_CTL_1_DLY2_BITS	2
#define IBB_PWRUP_PWRDN_CTL_1_DLY2_MASK	\
	((1 << IBB_PWRUP_PWRDN_CTL_1_DLY2_BITS) - 1)