mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 20:58:14 -04:00
staging: wilc1000: rename u8Ted of struct ba_session_info
This patch renames u8Ted of struct ba_session_info to tid to avoid CamelCase naming convention. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3fc4999e3d
commit
16c9b39142
@@ -2720,7 +2720,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
|
||||
strHostIfBASessionInfo->bssid[2],
|
||||
strHostIfBASessionInfo->u16BufferSize,
|
||||
strHostIfBASessionInfo->u16SessionTimeout,
|
||||
strHostIfBASessionInfo->u8Ted);
|
||||
strHostIfBASessionInfo->tid);
|
||||
|
||||
wid.id = (u16)WID_11E_P_ACTION_REQ;
|
||||
wid.type = WID_STR;
|
||||
@@ -2732,7 +2732,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
|
||||
*ptr++ = 0x0;
|
||||
memcpy(ptr, strHostIfBASessionInfo->bssid, ETH_ALEN);
|
||||
ptr += ETH_ALEN;
|
||||
*ptr++ = strHostIfBASessionInfo->u8Ted;
|
||||
*ptr++ = strHostIfBASessionInfo->tid;
|
||||
*ptr++ = 1;
|
||||
*ptr++ = (strHostIfBASessionInfo->u16BufferSize & 0xFF);
|
||||
*ptr++ = ((strHostIfBASessionInfo->u16BufferSize >> 16) & 0xFF);
|
||||
@@ -2757,7 +2757,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
|
||||
*ptr++ = 0x2;
|
||||
memcpy(ptr, strHostIfBASessionInfo->bssid, ETH_ALEN);
|
||||
ptr += ETH_ALEN;
|
||||
*ptr++ = strHostIfBASessionInfo->u8Ted;
|
||||
*ptr++ = strHostIfBASessionInfo->tid;
|
||||
*ptr++ = 8;
|
||||
*ptr++ = (strHostIfBASessionInfo->u16BufferSize & 0xFF);
|
||||
*ptr++ = ((strHostIfBASessionInfo->u16SessionTimeout >> 16) & 0xFF);
|
||||
@@ -2781,7 +2781,7 @@ static s32 Handle_DelAllRxBASessions(struct host_if_drv *hif_drv,
|
||||
strHostIfBASessionInfo->bssid[0],
|
||||
strHostIfBASessionInfo->bssid[1],
|
||||
strHostIfBASessionInfo->bssid[2],
|
||||
strHostIfBASessionInfo->u8Ted);
|
||||
strHostIfBASessionInfo->tid);
|
||||
|
||||
wid.id = (u16)WID_DEL_ALL_RX_BA;
|
||||
wid.type = WID_STR;
|
||||
@@ -2793,7 +2793,7 @@ static s32 Handle_DelAllRxBASessions(struct host_if_drv *hif_drv,
|
||||
*ptr++ = 0x2;
|
||||
memcpy(ptr, strHostIfBASessionInfo->bssid, ETH_ALEN);
|
||||
ptr += ETH_ALEN;
|
||||
*ptr++ = strHostIfBASessionInfo->u8Ted;
|
||||
*ptr++ = strHostIfBASessionInfo->tid;
|
||||
*ptr++ = 0;
|
||||
*ptr++ = 32;
|
||||
|
||||
@@ -4915,7 +4915,7 @@ s32 host_int_delBASession(struct host_if_drv *hif_drv, char *pBSSID, char TID)
|
||||
msg.id = HOST_IF_MSG_DEL_BA_SESSION;
|
||||
|
||||
memcpy(pBASessionInfo->bssid, pBSSID, ETH_ALEN);
|
||||
pBASessionInfo->u8Ted = TID;
|
||||
pBASessionInfo->tid = TID;
|
||||
msg.drv = hif_drv;
|
||||
|
||||
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
|
||||
@@ -4945,7 +4945,7 @@ s32 host_int_del_All_Rx_BASession(struct host_if_drv *hif_drv,
|
||||
msg.id = HOST_IF_MSG_DEL_ALL_RX_BA_SESSIONS;
|
||||
|
||||
memcpy(pBASessionInfo->bssid, pBSSID, ETH_ALEN);
|
||||
pBASessionInfo->u8Ted = TID;
|
||||
pBASessionInfo->tid = TID;
|
||||
msg.drv = hif_drv;
|
||||
|
||||
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
|
||||
|
||||
@@ -230,7 +230,7 @@ struct get_mac_addr {
|
||||
|
||||
struct ba_session_info {
|
||||
u8 bssid[ETH_ALEN];
|
||||
u8 u8Ted;
|
||||
u8 tid;
|
||||
u16 u16BufferSize;
|
||||
u16 u16SessionTimeout;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user