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

staging: wilc1000: wilc_parse_network_info(): renames function variables

This patch renames to avoid camelcase, changes follow are:
 - pu8MsgBuffer to msg_buffer
 - ppstrNetworkInfo to ret_network_info
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bc4b5b3c
...@@ -270,7 +270,7 @@ static u8 get_current_channel_802_11n(u8 *pu8msa, u16 rx_len) ...@@ -270,7 +270,7 @@ static u8 get_current_channel_802_11n(u8 *pu8msa, u16 rx_len)
return 0; return 0;
} }
s32 wilc_parse_network_info(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo) s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info)
{ {
tstrNetworkInfo *pstrNetworkInfo = NULL; tstrNetworkInfo *pstrNetworkInfo = NULL;
u8 u8MsgType = 0; u8 u8MsgType = 0;
...@@ -281,18 +281,18 @@ s32 wilc_parse_network_info(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo ...@@ -281,18 +281,18 @@ s32 wilc_parse_network_info(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo
u16 u16WidLen = 0; u16 u16WidLen = 0;
u8 *pu8WidVal = NULL; u8 *pu8WidVal = NULL;
u8MsgType = pu8MsgBuffer[0]; u8MsgType = msg_buffer[0];
if ('N' != u8MsgType) { if ('N' != u8MsgType) {
PRINT_ER("Received Message format incorrect.\n"); PRINT_ER("Received Message format incorrect.\n");
return -EFAULT; return -EFAULT;
} }
u8MsgID = pu8MsgBuffer[1]; u8MsgID = msg_buffer[1];
u16MsgLen = MAKE_WORD16(pu8MsgBuffer[2], pu8MsgBuffer[3]); u16MsgLen = MAKE_WORD16(msg_buffer[2], msg_buffer[3]);
u16WidID = MAKE_WORD16(pu8MsgBuffer[4], pu8MsgBuffer[5]); u16WidID = MAKE_WORD16(msg_buffer[4], msg_buffer[5]);
u16WidLen = MAKE_WORD16(pu8MsgBuffer[6], pu8MsgBuffer[7]); u16WidLen = MAKE_WORD16(msg_buffer[6], msg_buffer[7]);
pu8WidVal = &pu8MsgBuffer[8]; pu8WidVal = &msg_buffer[8];
{ {
u8 *pu8msa = NULL; u8 *pu8msa = NULL;
...@@ -350,7 +350,7 @@ s32 wilc_parse_network_info(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo ...@@ -350,7 +350,7 @@ s32 wilc_parse_network_info(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo
} }
*ppstrNetworkInfo = pstrNetworkInfo; *ret_network_info = pstrNetworkInfo;
return 0; return 0;
} }
......
...@@ -120,7 +120,7 @@ typedef struct { ...@@ -120,7 +120,7 @@ typedef struct {
size_t ie_len; size_t ie_len;
} tstrDisconnectNotifInfo; } tstrDisconnectNotifInfo;
s32 wilc_parse_network_info(u8 *pu8MsgBuffer, tstrNetworkInfo **ppstrNetworkInfo); s32 wilc_parse_network_info(u8 *msg_buffer, tstrNetworkInfo **ret_network_info);
s32 wilc_dealloc_network_info(tstrNetworkInfo *pstrNetworkInfo); s32 wilc_dealloc_network_info(tstrNetworkInfo *pstrNetworkInfo);
s32 wilc_parse_assoc_resp_info(u8 *pu8Buffer, u32 u32BufferLen, s32 wilc_parse_assoc_resp_info(u8 *pu8Buffer, u32 u32BufferLen,
......
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