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

staging: wilc1000: wilc_parse_network_info(): renames local variables

This patch renames to avoid camelcase, changes follow are:
 - pstrNetworkInfo to network_info
 - u8MsgType to msg_type
 - u8MsgID to msg_id
 - u16MsgLen to msg_len
 - u16WidID to wid_id
 - u16WidLen to wid_len
 - pu8WidVal to wid_val
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cdd61064
...@@ -272,27 +272,27 @@ static u8 get_current_channel_802_11n(u8 *pu8msa, u16 rx_len) ...@@ -272,27 +272,27 @@ static u8 get_current_channel_802_11n(u8 *pu8msa, u16 rx_len)
s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info) s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info)
{ {
tstrNetworkInfo *pstrNetworkInfo = NULL; tstrNetworkInfo *network_info = NULL;
u8 u8MsgType = 0; u8 msg_type = 0;
u8 u8MsgID = 0; u8 msg_id = 0;
u16 u16MsgLen = 0; u16 msg_len = 0;
u16 u16WidID = (u16)WID_NIL; u16 wid_id = (u16)WID_NIL;
u16 u16WidLen = 0; u16 wid_len = 0;
u8 *pu8WidVal = NULL; u8 *wid_val = NULL;
u8MsgType = msg_buffer[0]; msg_type = msg_buffer[0];
if ('N' != u8MsgType) { if ('N' != msg_type) {
PRINT_ER("Received Message format incorrect.\n"); PRINT_ER("Received Message format incorrect.\n");
return -EFAULT; return -EFAULT;
} }
u8MsgID = msg_buffer[1]; msg_id = msg_buffer[1];
u16MsgLen = MAKE_WORD16(msg_buffer[2], msg_buffer[3]); msg_len = MAKE_WORD16(msg_buffer[2], msg_buffer[3]);
u16WidID = MAKE_WORD16(msg_buffer[4], msg_buffer[5]); wid_id = MAKE_WORD16(msg_buffer[4], msg_buffer[5]);
u16WidLen = MAKE_WORD16(msg_buffer[6], msg_buffer[7]); wid_len = MAKE_WORD16(msg_buffer[6], msg_buffer[7]);
pu8WidVal = &msg_buffer[8]; wid_val = &msg_buffer[8];
{ {
u8 *pu8msa = NULL; u8 *pu8msa = NULL;
...@@ -304,53 +304,52 @@ s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info) ...@@ -304,53 +304,52 @@ s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info)
u32 u32Tsf_Lo; u32 u32Tsf_Lo;
u32 u32Tsf_Hi; u32 u32Tsf_Hi;
pstrNetworkInfo = kzalloc(sizeof(tstrNetworkInfo), GFP_KERNEL); network_info = kzalloc(sizeof(tstrNetworkInfo), GFP_KERNEL);
if (!pstrNetworkInfo) if (!network_info)
return -ENOMEM; return -ENOMEM;
pstrNetworkInfo->s8rssi = pu8WidVal[0]; network_info->s8rssi = wid_val[0];
pu8msa = &pu8WidVal[1]; pu8msa = &wid_val[1];
rx_len = u16WidLen - 1; rx_len = wid_len - 1;
pstrNetworkInfo->u16CapInfo = get_cap_info(pu8msa); network_info->u16CapInfo = get_cap_info(pu8msa);
pstrNetworkInfo->u32Tsf = get_beacon_timestamp_lo(pu8msa); network_info->u32Tsf = get_beacon_timestamp_lo(pu8msa);
PRINT_D(CORECONFIG_DBG, "TSF :%x\n", pstrNetworkInfo->u32Tsf); PRINT_D(CORECONFIG_DBG, "TSF :%x\n", network_info->u32Tsf);
u32Tsf_Lo = get_beacon_timestamp_lo(pu8msa); u32Tsf_Lo = get_beacon_timestamp_lo(pu8msa);
u32Tsf_Hi = get_beacon_timestamp_hi(pu8msa); u32Tsf_Hi = get_beacon_timestamp_hi(pu8msa);
pstrNetworkInfo->u64Tsf = u32Tsf_Lo | ((u64)u32Tsf_Hi << 32); network_info->u64Tsf = u32Tsf_Lo | ((u64)u32Tsf_Hi << 32);
get_ssid(pu8msa, pstrNetworkInfo->au8ssid, &pstrNetworkInfo->u8SsidLen); get_ssid(pu8msa, network_info->au8ssid, &network_info->u8SsidLen);
get_BSSID(pu8msa, pstrNetworkInfo->au8bssid); get_BSSID(pu8msa, network_info->au8bssid);
pstrNetworkInfo->u8channel = get_current_channel_802_11n(pu8msa, network_info->u8channel = get_current_channel_802_11n(pu8msa,
rx_len + FCS_LEN); rx_len + FCS_LEN);
u8index = MAC_HDR_LEN + TIME_STAMP_LEN; u8index = MAC_HDR_LEN + TIME_STAMP_LEN;
pstrNetworkInfo->u16BeaconPeriod = get_beacon_period(pu8msa + u8index); network_info->u16BeaconPeriod = get_beacon_period(pu8msa + u8index);
u8index += BEACON_INTERVAL_LEN + CAP_INFO_LEN; u8index += BEACON_INTERVAL_LEN + CAP_INFO_LEN;
pu8TimElm = get_tim_elm(pu8msa, rx_len + FCS_LEN, u8index); pu8TimElm = get_tim_elm(pu8msa, rx_len + FCS_LEN, u8index);
if (pu8TimElm) if (pu8TimElm)
pstrNetworkInfo->u8DtimPeriod = pu8TimElm[3]; network_info->u8DtimPeriod = pu8TimElm[3];
pu8IEs = &pu8msa[MAC_HDR_LEN + TIME_STAMP_LEN + BEACON_INTERVAL_LEN + CAP_INFO_LEN]; pu8IEs = &pu8msa[MAC_HDR_LEN + TIME_STAMP_LEN + BEACON_INTERVAL_LEN + CAP_INFO_LEN];
u16IEsLen = rx_len - (MAC_HDR_LEN + TIME_STAMP_LEN + BEACON_INTERVAL_LEN + CAP_INFO_LEN); u16IEsLen = rx_len - (MAC_HDR_LEN + TIME_STAMP_LEN + BEACON_INTERVAL_LEN + CAP_INFO_LEN);
if (u16IEsLen > 0) { if (u16IEsLen > 0) {
pstrNetworkInfo->pu8IEs = kmemdup(pu8IEs, u16IEsLen, network_info->pu8IEs = kmemdup(pu8IEs, u16IEsLen,
GFP_KERNEL); GFP_KERNEL);
if (!pstrNetworkInfo->pu8IEs) if (!network_info->pu8IEs)
return -ENOMEM; return -ENOMEM;
} }
pstrNetworkInfo->u16IEsLen = u16IEsLen; network_info->u16IEsLen = u16IEsLen;
} }
*ret_network_info = pstrNetworkInfo; *ret_network_info = network_info;
return 0; return 0;
} }
......
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