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

Commit 5c30383e authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "drivers: qcom: system_pm: fix incorrect check for idle status"

parents f27cab0c a1d1fabf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ static int system_sleep_update_wakeup(bool from_idle)
 */
static bool system_sleep_allowed(void)
{
	return (rpmh_ctrlr_idle(dev) == 0);
	return rpmh_ctrlr_idle(dev);
}

/**