Browse Source

cnss2: Avoid OS assert if SSR enabled

Current implementation tries to collect FW dump when cnss shutdown,
and then ASSERT after collection complete.

Do not invoke CNSS_ASSERT if SSR enabled.

Change-Id: I8d427603bfc7e6bb5d732fa3e29ff66c965e153b
CRs-Fixed: 3399930
Lin Bai 2 years ago
parent
commit
2684b4a9d8
1 changed files with 3 additions and 1 deletions
  1. 3 1
      cnss2/pci.c

+ 3 - 1
cnss2/pci.c

@@ -3025,7 +3025,9 @@ static int cnss_qca6290_shutdown(struct cnss_pci_data *pci_priv)
 	    test_bit(CNSS_DEV_ERR_NOTIFY, &plat_priv->driver_state)) {
 		del_timer(&pci_priv->dev_rddm_timer);
 		cnss_pci_collect_dump_info(pci_priv, false);
-		CNSS_ASSERT(0);
+
+		if (!plat_priv->recovery_enabled)
+			CNSS_ASSERT(0);
 	}
 
 	if (!cnss_is_device_powered_on(plat_priv)) {