Browse Source

qcacld-3.0: Check return value of hdd_process_peer_chain_rssi_req

Currently host does not check the return value of
hdd_process_peer_chain_rssi_req, returns success
on error case as well in __wlan_hdd_cfg80211_get_chain_rssi.
Also double conversion of qdf status to os_if status
is taking place which is giving wrong error status.

Remove extra status conversion and consider the return value
of hdd_process_peer_chain_rssi_req.

Change-Id: I387a36afe80eb4e7aa5bad746074d077b20de331
CRs-Fixed: 3245972
Divyajyothi Goparaju 2 năm trước cách đây
mục cha
commit
89752dbdf5
1 tập tin đã thay đổi với 1 bổ sung3 xóa
  1. 1 3
      core/hdd/src/wlan_hdd_cfg80211.c

+ 1 - 3
core/hdd/src/wlan_hdd_cfg80211.c

@@ -16061,7 +16061,6 @@ static int hdd_process_peer_chain_rssi_req(struct hdd_adapter *adapter,
 		if (stats)
 			wlan_cfg80211_mc_cp_stats_free_stats_event(stats);
 		hdd_err("Unable to get chain rssi from fw");
-		retval = qdf_status_to_os_return(retval);
 		return retval;
 	}
 
@@ -16730,8 +16729,7 @@ static int __wlan_hdd_cfg80211_get_chain_rssi(struct wiphy *wiphy,
 	qdf_copy_macaddr(&peer_macaddr,
 			 nla_data(tb[QCA_WLAN_VENDOR_ATTR_MAC_ADDR]));
 
-	hdd_process_peer_chain_rssi_req(adapter, &peer_macaddr);
-
+	retval = hdd_process_peer_chain_rssi_req(adapter, &peer_macaddr);
 	hdd_exit();
 	return retval;
 }