Commit d6f19aa5 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename pu8IEs of struct scan_attr

This patch renames pu8IEs of struct scan_attr to ies to
avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f97bd9ca
...@@ -100,7 +100,7 @@ struct scan_attr { ...@@ -100,7 +100,7 @@ struct scan_attr {
u8 type; u8 type;
u8 *ch_freq_list; u8 *ch_freq_list;
u8 ch_list_len; u8 ch_list_len;
u8 *pu8IEs; u8 *ies;
size_t IEsLen; size_t IEsLen;
wilc_scan_result pfScanResult; wilc_scan_result pfScanResult;
void *pvUserArg; void *pvUserArg;
...@@ -891,7 +891,7 @@ static s32 Handle_Scan(struct host_if_drv *hif_drv, ...@@ -891,7 +891,7 @@ static s32 Handle_Scan(struct host_if_drv *hif_drv,
{ {
strWIDList[u32WidsCount].id = WID_INFO_ELEMENT_PROBE; strWIDList[u32WidsCount].id = WID_INFO_ELEMENT_PROBE;
strWIDList[u32WidsCount].type = WID_BIN_DATA; strWIDList[u32WidsCount].type = WID_BIN_DATA;
strWIDList[u32WidsCount].val = pstrHostIFscanAttr->pu8IEs; strWIDList[u32WidsCount].val = pstrHostIFscanAttr->ies;
strWIDList[u32WidsCount].size = pstrHostIFscanAttr->IEsLen; strWIDList[u32WidsCount].size = pstrHostIFscanAttr->IEsLen;
u32WidsCount++; u32WidsCount++;
} }
...@@ -948,9 +948,9 @@ static s32 Handle_Scan(struct host_if_drv *hif_drv, ...@@ -948,9 +948,9 @@ static s32 Handle_Scan(struct host_if_drv *hif_drv,
pstrHostIFscanAttr->ch_freq_list = NULL; pstrHostIFscanAttr->ch_freq_list = NULL;
} }
if (pstrHostIFscanAttr->pu8IEs != NULL) { if (pstrHostIFscanAttr->ies != NULL) {
kfree(pstrHostIFscanAttr->pu8IEs); kfree(pstrHostIFscanAttr->ies);
pstrHostIFscanAttr->pu8IEs = NULL; pstrHostIFscanAttr->ies = NULL;
} }
if (pstrHostIFscanAttr->strHiddenNetwork.pstrHiddenNetworkInfo != NULL) { if (pstrHostIFscanAttr->strHiddenNetwork.pstrHiddenNetworkInfo != NULL) {
kfree(pstrHostIFscanAttr->strHiddenNetwork.pstrHiddenNetworkInfo); kfree(pstrHostIFscanAttr->strHiddenNetwork.pstrHiddenNetworkInfo);
...@@ -4067,9 +4067,8 @@ s32 host_int_scan(struct host_if_drv *hif_drv, u8 u8ScanSource, ...@@ -4067,9 +4067,8 @@ s32 host_int_scan(struct host_if_drv *hif_drv, u8 u8ScanSource,
memcpy(msg.body.scan_info.ch_freq_list, pu8ChnlFreqList, u8ChnlListLen); memcpy(msg.body.scan_info.ch_freq_list, pu8ChnlFreqList, u8ChnlListLen);
msg.body.scan_info.IEsLen = IEsLen; msg.body.scan_info.IEsLen = IEsLen;
msg.body.scan_info.pu8IEs = kmalloc(IEsLen, GFP_KERNEL); msg.body.scan_info.ies = kmalloc(IEsLen, GFP_KERNEL);
memcpy(msg.body.scan_info.pu8IEs, memcpy(msg.body.scan_info.ies, pu8IEs, IEsLen);
pu8IEs, IEsLen);
s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg)); s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
if (s32Error) { if (s32Error) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment