qcacld-3.0: Rename hdd_adapter station info fields

Struct hdd_adapter defines fields aStaInfo and staInfo_lock to manage
the station information. Per the Linux coding style "mixed-case names
are frowned upon" so rename the fields.

Change-Id: I0e0436d03255ab6e18eee70b57e3b5a9dc9cc3f5
CRs-Fixed: 2131096
diff --git a/core/hdd/src/wlan_hdd_ipa.c b/core/hdd/src/wlan_hdd_ipa.c
index 54f4c73..8bf30a4 100644
--- a/core/hdd/src/wlan_hdd_ipa.c
+++ b/core/hdd/src/wlan_hdd_ipa.c
@@ -3060,13 +3060,13 @@
 
 	HDD_IPA_LOG(QDF_TRACE_LEVEL_FATAL, "enter");
 	for (i = 0; i < WLAN_MAX_STA_COUNT; i++) {
-		if (qdf_is_macaddr_broadcast(&adapter->aStaInfo[i].sta_mac))
+		if (qdf_is_macaddr_broadcast(&adapter->sta_info[i].sta_mac))
 			continue;
-		if ((adapter->aStaInfo[i].in_use) &&
-		   (!adapter->aStaInfo[i].is_deauth_in_progress) &&
+		if ((adapter->sta_info[i].in_use) &&
+		   (!adapter->sta_info[i].is_deauth_in_progress) &&
 		   hdd_ipa->sap_num_connected_sta) {
 			hdd_ipa_uc_send_evt(adapter, WLAN_CLIENT_DISCONNECT,
-				adapter->aStaInfo[i].sta_mac.bytes);
+				adapter->sta_info[i].sta_mac.bytes);
 			hdd_ipa->sap_num_connected_sta--;
 		}
 	}