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

staging: wilc1000: rename u16BufferSize of struct ba_session_info

This patch renames u16BufferSize of struct ba_session_info to buf_size
to avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 16c9b391
...@@ -2718,7 +2718,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv, ...@@ -2718,7 +2718,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
strHostIfBASessionInfo->bssid[0], strHostIfBASessionInfo->bssid[0],
strHostIfBASessionInfo->bssid[1], strHostIfBASessionInfo->bssid[1],
strHostIfBASessionInfo->bssid[2], strHostIfBASessionInfo->bssid[2],
strHostIfBASessionInfo->u16BufferSize, strHostIfBASessionInfo->buf_size,
strHostIfBASessionInfo->u16SessionTimeout, strHostIfBASessionInfo->u16SessionTimeout,
strHostIfBASessionInfo->tid); strHostIfBASessionInfo->tid);
...@@ -2734,8 +2734,8 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv, ...@@ -2734,8 +2734,8 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
ptr += ETH_ALEN; ptr += ETH_ALEN;
*ptr++ = strHostIfBASessionInfo->tid; *ptr++ = strHostIfBASessionInfo->tid;
*ptr++ = 1; *ptr++ = 1;
*ptr++ = (strHostIfBASessionInfo->u16BufferSize & 0xFF); *ptr++ = (strHostIfBASessionInfo->buf_size & 0xFF);
*ptr++ = ((strHostIfBASessionInfo->u16BufferSize >> 16) & 0xFF); *ptr++ = ((strHostIfBASessionInfo->buf_size >> 16) & 0xFF);
*ptr++ = (strHostIfBASessionInfo->u16SessionTimeout & 0xFF); *ptr++ = (strHostIfBASessionInfo->u16SessionTimeout & 0xFF);
*ptr++ = ((strHostIfBASessionInfo->u16SessionTimeout >> 16) & 0xFF); *ptr++ = ((strHostIfBASessionInfo->u16SessionTimeout >> 16) & 0xFF);
*ptr++ = (AddbaTimeout & 0xFF); *ptr++ = (AddbaTimeout & 0xFF);
...@@ -2759,7 +2759,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv, ...@@ -2759,7 +2759,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
ptr += ETH_ALEN; ptr += ETH_ALEN;
*ptr++ = strHostIfBASessionInfo->tid; *ptr++ = strHostIfBASessionInfo->tid;
*ptr++ = 8; *ptr++ = 8;
*ptr++ = (strHostIfBASessionInfo->u16BufferSize & 0xFF); *ptr++ = (strHostIfBASessionInfo->buf_size & 0xFF);
*ptr++ = ((strHostIfBASessionInfo->u16SessionTimeout >> 16) & 0xFF); *ptr++ = ((strHostIfBASessionInfo->u16SessionTimeout >> 16) & 0xFF);
*ptr++ = 3; *ptr++ = 3;
result = send_config_pkt(SET_CFG, &wid, 1, result = send_config_pkt(SET_CFG, &wid, 1,
......
...@@ -231,7 +231,7 @@ struct get_mac_addr { ...@@ -231,7 +231,7 @@ struct get_mac_addr {
struct ba_session_info { struct ba_session_info {
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
u8 tid; u8 tid;
u16 u16BufferSize; u16 buf_size;
u16 u16SessionTimeout; u16 u16SessionTimeout;
}; };
......
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