Parcourir la source

qcacld-3.0: Remove cds_trigger_recovery where not needed

Currently in the driver there are places from where recovery is
initiated. Some of those are not required as logic around them has
changed.

Remove those cds_trigger_recovery from places where it is not needed.

Change-Id: Ia5a0fa60101e1c9f44077daa83c4a20d18893c0a
CRs-Fixed: 2628691
Sourav Mohapatra il y a 5 ans
Parent
commit
4140e8bfa8
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      core/mac/src/pe/lim/lim_utils.c
  2. 1 1
      core/wma/src/wma_dev_if.c

+ 1 - 1
core/mac/src/pe/lim/lim_utils.c

@@ -5116,7 +5116,7 @@ bool lim_set_nss_change(struct mac_context *mac, struct pe_session *pe_session,
 
 	if (!rxNss) {
 		pe_err("Invalid rxNss value: %u", rxNss);
-		cds_trigger_recovery(QDF_REASON_UNSPECIFIED);
+		return false;
 	}
 
 	tempParam.rxNss = rxNss;

+ 1 - 1
core/wma/src/wma_dev_if.c

@@ -1571,7 +1571,7 @@ QDF_STATUS wma_remove_peer(tp_wma_handle wma, uint8_t *mac_addr,
 		WMA_LOGE("%s: Can't remove peer with peer_addr %pM vdevid %d peer_count %d",
 			 __func__, peer_addr, vdev_id,
 			wma->interfaces[vdev_id].peer_count);
-		cds_trigger_recovery(QDF_REASON_UNSPECIFIED);
+		QDF_ASSERT(0);
 		return QDF_STATUS_E_INVAL;
 	}