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

Commit ba3f1335 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

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

parents be9ea481 471bf3dc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -319,11 +319,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)