Browse Source

qcacld-3.0: Rename HDD variable cckmIe

The Linux Coding Style frowns upon mixed-case names and so-called
Hungarian notation, so rename HDD local variable cckmIe to be
compliant.

Change-Id: Ic02fa6f44f859543905213e67ef7e1d0a08f619b
CRs-Fixed: 2405770
Jeff Johnson 6 years ago
parent
commit
264e2d3a59
1 changed files with 9 additions and 9 deletions
  1. 9 9
      core/hdd/src/wlan_hdd_ioctl.c

+ 9 - 9
core/hdd/src/wlan_hdd_ioctl.c

@@ -5530,10 +5530,10 @@ static int drv_cmd_set_cckm_ie(struct hdd_adapter *adapter,
 {
 	int ret;
 	uint8_t *value = command;
-	uint8_t *cckmIe = NULL;
+	uint8_t *cckm_ie = NULL;
 	uint8_t cckm_ie_len = 0;
 
-	ret = hdd_parse_get_cckm_ie(value, &cckmIe, &cckm_ie_len);
+	ret = hdd_parse_get_cckm_ie(value, &cckm_ie, &cckm_ie_len);
 	if (ret) {
 		hdd_err("Failed to parse cckm ie data");
 		goto exit;
@@ -5542,19 +5542,19 @@ static int drv_cmd_set_cckm_ie(struct hdd_adapter *adapter,
 	if (cckm_ie_len > DOT11F_IE_RSN_MAX_LEN) {
 		hdd_err("CCKM Ie input length is more than max[%d]",
 			  DOT11F_IE_RSN_MAX_LEN);
-		if (NULL != cckmIe) {
-			qdf_mem_free(cckmIe);
-			cckmIe = NULL;
+		if (NULL != cckm_ie) {
+			qdf_mem_free(cckm_ie);
+			cckm_ie = NULL;
 		}
 		ret = -EINVAL;
 		goto exit;
 	}
 
 	sme_set_cckm_ie(hdd_ctx->mac_handle, adapter->vdev_id,
-			cckmIe, cckm_ie_len);
-	if (NULL != cckmIe) {
-		qdf_mem_free(cckmIe);
-		cckmIe = NULL;
+			cckm_ie, cckm_ie_len);
+	if (NULL != cckm_ie) {
+		qdf_mem_free(cckm_ie);
+		cckm_ie = NULL;
 	}
 
 exit: