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

Commit 96cf4bc6 authored by Naman Padhiar's avatar Naman Padhiar
Browse files

icnss2: Do not clear SHUTDOWN_DONE flag until reinit is done



In case of SSR/PDR, when FW comes up, platform driver receives
FW_READY indication. As part of FW_READY, platform driver calls
shutdown and reinit ops of host driver.
Clear SHUTDOWN_DONE flag at right place so that if reinit is not
called SSR/PDR because of FW again went down between calling driver
shutdown and reinit then next time directly call reinit and avoid
calling shutdown.

Change-Id: Icdd259d52db1b84203a9efb2e5948207f3213ce6
Signed-off-by: default avatarNaman Padhiar <npadhiar@codeaurora.org>
parent b8636f58
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -726,7 +726,7 @@ static int icnss_call_driver_shutdown(struct icnss_priv *priv)

static int icnss_pd_restart_complete(struct icnss_priv *priv)
{
	int ret;
	int ret = 0;

	icnss_pm_relax(priv);

@@ -766,7 +766,6 @@ static int icnss_pd_restart_complete(struct icnss_priv *priv)
		goto out_power_off;
	}

out:
	icnss_block_shutdown(false);
	clear_bit(ICNSS_SHUTDOWN_DONE, &priv->state);
	return 0;
@@ -777,6 +776,7 @@ static int icnss_pd_restart_complete(struct icnss_priv *priv)
out_power_off:
	icnss_hw_power_off(priv);

out:
	return ret;
}