staging: wilc1000: rename u16BufferSize of struct ba_session_info
authorLeo Kim <leo.kim@atmel.com>
Thu, 29 Oct 2015 02:58:47 +0000 (11:58 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames u16BufferSize of struct ba_session_info to buf_size
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>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h

index 74d4c8f4874472550a3e133ec20d8fe1265acb56..75ad6d006944a4bf343c72e6fc8e1706bc1311dd 100644 (file)
@@ -2718,7 +2718,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
                strHostIfBASessionInfo->bssid[0],
                strHostIfBASessionInfo->bssid[1],
                strHostIfBASessionInfo->bssid[2],
-               strHostIfBASessionInfo->u16BufferSize,
+               strHostIfBASessionInfo->buf_size,
                strHostIfBASessionInfo->u16SessionTimeout,
                strHostIfBASessionInfo->tid);
 
@@ -2734,8 +2734,8 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
        ptr += ETH_ALEN;
        *ptr++ = strHostIfBASessionInfo->tid;
        *ptr++ = 1;
-       *ptr++ = (strHostIfBASessionInfo->u16BufferSize & 0xFF);
-       *ptr++ = ((strHostIfBASessionInfo->u16BufferSize >> 16) & 0xFF);
+       *ptr++ = (strHostIfBASessionInfo->buf_size & 0xFF);
+       *ptr++ = ((strHostIfBASessionInfo->buf_size >> 16) & 0xFF);
        *ptr++ = (strHostIfBASessionInfo->u16SessionTimeout & 0xFF);
        *ptr++ = ((strHostIfBASessionInfo->u16SessionTimeout >> 16) & 0xFF);
        *ptr++ = (AddbaTimeout & 0xFF);
@@ -2759,7 +2759,7 @@ static s32 Handle_AddBASession(struct host_if_drv *hif_drv,
        ptr += ETH_ALEN;
        *ptr++ = strHostIfBASessionInfo->tid;
        *ptr++ = 8;
-       *ptr++ = (strHostIfBASessionInfo->u16BufferSize & 0xFF);
+       *ptr++ = (strHostIfBASessionInfo->buf_size & 0xFF);
        *ptr++ = ((strHostIfBASessionInfo->u16SessionTimeout >> 16) & 0xFF);
        *ptr++ = 3;
        result = send_config_pkt(SET_CFG, &wid, 1,
index 9110e9ecf8cd0028df5d685908222324384f7347..e020a6d72d06c759a58f0499dbe887d31e3cb0ff 100644 (file)
@@ -231,7 +231,7 @@ struct get_mac_addr {
 struct ba_session_info {
        u8 bssid[ETH_ALEN];
        u8 tid;
-       u16 u16BufferSize;
+       u16 buf_size;
        u16 u16SessionTimeout;
 };
 
This page took 0.02719 seconds and 5 git commands to generate.