Ver Fonte

qcacld-3.0: debug change to print HP/TP before in TXRX drain

Before suspend, output HP/TP value to make sure there
is nothing pending in RX rings.

Change-Id: I25312b5837ce2edfd43a0f70bda32842a95c5ed6
CRs-Fixed: 3648777
Yu Tian há 1 ano atrás
pai
commit
015848b43a
1 ficheiros alterados com 4 adições e 1 exclusões
  1. 4 1
      components/pmo/core/src/wlan_pmo_suspend_resume.c

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

@@ -1032,10 +1032,13 @@ QDF_STATUS pmo_core_txrx_suspend(struct wlan_objmgr_psoc *psoc)
 		goto out;
 	}
 
+	cdp_display_txrx_hw_info(dp_soc);
+	/* drain RX rings only */
+	cdp_drain_txrx(dp_soc, 1);
+
 	if (ret == -EOPNOTSUPP)
 		goto out;
 
-	cdp_drain_txrx(dp_soc);
 	pmo_ctx->wow.txrx_suspended = true;
 out:
 	pmo_psoc_put_ref(psoc);