Browse Source

qcacld-3.0: Remove HDD identifier staMac

The Linux Coding Style frowns upon mixed-case names so variable staMac
in hdd_get_interface_info() is not compliant. But rather than rename
it, just remove it, since its use does not really improve the code.

Change-Id: If4db592fe2b7728d7c03c1415c9d9e8aeb7c1cf2
CRs-Fixed: 2427181
Jeff Johnson 6 years ago
parent
commit
a540edea25
1 changed files with 1 additions and 5 deletions
  1. 1 5
      core/hdd/src/wlan_hdd_stats.c

+ 1 - 5
core/hdd/src/wlan_hdd_stats.c

@@ -543,7 +543,6 @@ static tSirWifiInterfaceMode hdd_map_device_to_ll_iface_mode(int deviceMode)
 bool hdd_get_interface_info(struct hdd_adapter *adapter,
 			    struct wifi_interface_info *info)
 {
-	uint8_t *staMac = NULL;
 	struct hdd_station_ctx *sta_ctx;
 	mac_handle_t mac_handle = adapter->hdd_ctx->mac_handle;
 	/* pre-existing layering violation */
@@ -570,12 +569,9 @@ bool hdd_get_interface_info(struct hdd_adapter *adapter,
 		if ((eConnectionState_Associated ==
 		     sta_ctx->conn_info.conn_state) &&
 		    (!sta_ctx->conn_info.is_authenticated)) {
-			staMac =
-				(uint8_t *) &(adapter->mac_addr.
-					      bytes[0]);
 			hdd_err("client " MAC_ADDRESS_STR
 				" is in the middle of WPS/EAPOL exchange.",
-				MAC_ADDR_ARRAY(staMac));
+				MAC_ADDR_ARRAY(adapter->mac_addr.bytes));
 			info->state = WIFI_AUTHENTICATING;
 		}
 		if (eConnectionState_Associated ==