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

Commit 471bf3dc authored by Hanumant Singh's avatar Hanumant Singh
Browse files

esoc: mdm-4x: Pmic shut down needs to be 400ms



legacy value of 4s not applicable to mdm9x25 or mdm9x35

Change-Id: I19230b60f60bb4aca29d45d46144974394186eb4
CRs-Fixed: 669064
Signed-off-by: default avatarHanumant Singh <hanumant@codeaurora.org>
parent 60d75479
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -320,11 +320,11 @@ static void mdm_power_down(struct mdm_ctrl *mdm)
						soft_reset_direction);
	/*
	* Currently, there is a debounce timer on the charm PMIC. It is
	* necessary to hold the PMIC RESET low for ~3.5 seconds
	* necessary to hold the PMIC RESET low for 400ms
	* for the reset to fully take place. Sleep here to ensure the
	* reset has occured before the function exits.
	*/
	msleep(4000);
	msleep(400);
}

static int mdm_cmd_exe(enum esoc_cmd cmd, struct esoc_clink *esoc)