Sfoglia il codice sorgente

qcacld-3.0: Replace hdd_context_t in __iw_get_peer_rssi()

Previously change "qcacld-3.0: Replace hdd_context_t in
wlan_hdd_hostapd.[ch]" replaced all instances of hdd_context_t in
wlan_hdd_hostapd.c. However a subsequent change introduced
__iw_get_peer_rssi() which has a new instance, so replace it.

Change-Id: I0a986b4e5255937732c41737ab65390e53257373
CRs-Fixed: 2103682
Jeff Johnson 7 anni fa
parent
commit
d867d7d5f0
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      core/hdd/src/wlan_hdd_hostapd.c

+ 1 - 1
core/hdd/src/wlan_hdd_hostapd.c

@@ -5699,7 +5699,7 @@ __iw_get_peer_rssi(struct net_device *dev, struct iw_request_info *info,
 		   union iwreq_data *wrqu, char *extra)
 {
 	hdd_adapter_t *adapter = netdev_priv(dev);
-	hdd_context_t *hddctx;
+	struct hdd_context *hddctx;
 	char macaddrarray[MAC_ADDRESS_STR_LEN];
 	struct qdf_mac_addr macaddress = QDF_MAC_ADDR_BROADCAST_INITIALIZER;
 	int ret;