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
This commit is contained in:
Jeff Johnson 2019-02-26 13:16:58 -08:00 committed by nshrivas
parent b9eeef3209
commit 264e2d3a59

View File

@ -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: