staging: wilc1000: rename u8CtWindow of struct join_bss_param
authorLeo Kim <leo.kim@atmel.com>
Thu, 15 Oct 2015 04:24:45 +0000 (13:24 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 04:37:18 +0000 (21:37 -0700)
This patch renames u8CtWindow of struct join_bss_param to ct_window
to avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index 7c6560942e3dd22567f61b29c128c0286746d8fb..b472292f2e94bd0ea39f8399e7c128ee7e6223d9 100644 (file)
@@ -221,7 +221,7 @@ struct join_bss_param {
        u32 tsf;
        u8 noa_enabled;
        u8 opp_enabled;
-       u8 u8CtWindow;
+       u8 ct_window;
        u8 u8Count;
        u8 u8Index;
        u8 au8Duration[4];
@@ -1185,7 +1185,7 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
                *(pu8CurrByte++) = ptstrJoinBssParam->opp_enabled;
 
                if (ptstrJoinBssParam->opp_enabled)
-                       *(pu8CurrByte++) = ptstrJoinBssParam->u8CtWindow;
+                       *(pu8CurrByte++) = ptstrJoinBssParam->ct_window;
 
                *(pu8CurrByte++) = ptstrJoinBssParam->u8Count;
 
@@ -4948,7 +4948,7 @@ static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo)
 
                                if (pu8IEs[index + 10] & BIT(7)) {
                                        pNewJoinBssParam->opp_enabled = 1;
-                                       pNewJoinBssParam->u8CtWindow = pu8IEs[index + 10];
+                                       pNewJoinBssParam->ct_window = pu8IEs[index + 10];
                                } else {
                                        pNewJoinBssParam->opp_enabled = 0;
                                }
This page took 0.027948 seconds and 5 git commands to generate.