Browse Source

Merge "qcacld-3.0: Prevent suspend if DP drain fails" into wlan-cld3.driver.lnx.2.0.r112-rel

Linux Build Service Account 1 năm trước cách đây
mục cha
commit
835ed10593
1 tập tin đã thay đổi với 11 bổ sung1 xóa
  1. 11 1
      components/pmo/core/src/wlan_pmo_suspend_resume.c

+ 11 - 1
components/pmo/core/src/wlan_pmo_suspend_resume.c

@@ -1045,7 +1045,17 @@ QDF_STATUS pmo_core_txrx_suspend(struct wlan_objmgr_psoc *psoc)
 		goto out;
 	}
 
-	cdp_drain_txrx(dp_soc, 0);
+	status = cdp_drain_txrx(dp_soc, 0);
+	if (QDF_IS_STATUS_ERROR(status)) {
+		pmo_err("Prevent suspend unable to drain txrx");
+		ret = hif_enable_grp_irqs(hif_ctx);
+		if (ret && ret != -EOPNOTSUPP) {
+			pmo_err("Failed to enable grp irqs: %d", ret);
+			QDF_BUG(0);
+		}
+		goto out;
+	}
+
 	pmo_ctx->wow.txrx_suspended = true;
 out:
 	pmo_psoc_put_ref(psoc);