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

Commit e180f887 authored by Henry Chen's avatar Henry Chen Committed by Matthias Brugger
Browse files

soc: mediatek: PMIC wrap: Extend the waiting time to 10ms.



Read data fails sometimes because of a timeout that PMIC cannot transfer data
to PMIC wrap on time, extend the waiting time to 10ms to reduce the failed
rate.

Signed-off-by: default avatarHenry Chen <henryc.chen@mediatek.com>
Signed-off-by: default avatarMatthias Brugger <matthias.bgg@gmail.com>
parent 29b4817d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -583,7 +583,7 @@ static int pwrap_wait_for_state(struct pmic_wrapper *wrp,
{
	unsigned long timeout;

	timeout = jiffies + usecs_to_jiffies(255);
	timeout = jiffies + usecs_to_jiffies(10000);

	do {
		if (time_after(jiffies, timeout))