1
0
Fork 0

staging: wilc1000: rename u16RespIEsLen in struct connect_info

This patch renames u16RespIEsLen to resp_ies_len to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Chaehyun Lim 2016-02-25 09:15:47 +09:00 committed by Greg Kroah-Hartman
parent 61e1326ff6
commit 3e7477c240
3 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ struct connect_info {
u8 *req_ies; u8 *req_ies;
size_t req_ies_len; size_t req_ies_len;
u8 *resp_ies; u8 *resp_ies;
u16 u16RespIEsLen; u16 resp_ies_len;
u16 u16ConnectStatus; u16 u16ConnectStatus;
}; };

View File

@ -1467,7 +1467,7 @@ static s32 Handle_RcvdGnrlAsyncInfo(struct wilc_vif *vif,
if (strConnectInfo.u16ConnectStatus == SUCCESSFUL_STATUSCODE) { if (strConnectInfo.u16ConnectStatus == SUCCESSFUL_STATUSCODE) {
if (pstrConnectRespInfo->ies) { if (pstrConnectRespInfo->ies) {
strConnectInfo.u16RespIEsLen = pstrConnectRespInfo->ies_len; strConnectInfo.resp_ies_len = pstrConnectRespInfo->ies_len;
strConnectInfo.resp_ies = kmalloc(pstrConnectRespInfo->ies_len, GFP_KERNEL); strConnectInfo.resp_ies = kmalloc(pstrConnectRespInfo->ies_len, GFP_KERNEL);
memcpy(strConnectInfo.resp_ies, pstrConnectRespInfo->ies, memcpy(strConnectInfo.resp_ies, pstrConnectRespInfo->ies,
pstrConnectRespInfo->ies_len); pstrConnectRespInfo->ies_len);

View File

@ -545,7 +545,7 @@ static void CfgConnectResult(enum conn_event enuConnDisconnEvent,
cfg80211_connect_result(dev, pstrConnectInfo->bssid, cfg80211_connect_result(dev, pstrConnectInfo->bssid,
pstrConnectInfo->req_ies, pstrConnectInfo->req_ies_len, pstrConnectInfo->req_ies, pstrConnectInfo->req_ies_len,
pstrConnectInfo->resp_ies, pstrConnectInfo->u16RespIEsLen, pstrConnectInfo->resp_ies, pstrConnectInfo->resp_ies_len,
u16ConnectStatus, GFP_KERNEL); u16ConnectStatus, GFP_KERNEL);
} else if (enuConnDisconnEvent == CONN_DISCONN_EVENT_DISCONN_NOTIF) { } else if (enuConnDisconnEvent == CONN_DISCONN_EVENT_DISCONN_NOTIF) {
wilc_optaining_ip = false; wilc_optaining_ip = false;