diff options
| author | Sameer Thalappil <sameert@codeaurora.org> | 2017-09-14 13:26:46 -0700 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-09-18 21:28:27 -0700 |
| commit | 01d6a94d7e73d08412f5d005bbcd55cb98ba7e55 (patch) | |
| tree | 2bd6a024f0ba4b0f47f14637a0459a691ec15436 | |
| parent | 7020a33c4e873ac233c458096617b8cbad765faf (diff) | |
qcacld-3.0: Reset suspended flag during recovery
When WLAN driver goes thru recovery, it's no longer suspended. All
threads are woken up, and FW is also reset during the recovery.
CRs-Fixed: 2110156
Change-Id: I4f586919c0a25345c981149d79c707fbfd1c347e
| -rw-r--r-- | core/hdd/src/wlan_hdd_power.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/hdd/src/wlan_hdd_power.c b/core/hdd/src/wlan_hdd_power.c index edad98f848f4..45156b6d4f37 100644 --- a/core/hdd/src/wlan_hdd_power.c +++ b/core/hdd/src/wlan_hdd_power.c @@ -1471,6 +1471,7 @@ QDF_STATUS hdd_wlan_shutdown(void) if (true == pHddCtx->isMcThreadSuspended) { complete(&cds_sched_context->ResumeMcEvent); pHddCtx->isMcThreadSuspended = false; + pHddCtx->isWiphySuspended = false; } #ifdef QCA_CONFIG_SMP if (true == pHddCtx->is_ol_rx_thread_suspended) { |
