]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename u8Index of struct join_bss_param
authorLeo Kim <leo.kim@atmel.com>
Thu, 15 Oct 2015 04:24:47 +0000 (13:24 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 04:37:18 +0000 (21:37 -0700)
This patch renames u8Index of struct join_bss_param to idx
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 72a84cead3e8a1fbf8434b8942fbe580c7dc6ecb..a4dcc4049577b754533b91b129b298eb80fcf59c 100644 (file)
@@ -223,7 +223,7 @@ struct join_bss_param {
        u8 opp_enabled;
        u8 ct_window;
        u8 cnt;
-       u8 u8Index;
+       u8 idx;
        u8 au8Duration[4];
        u8 au8Interval[4];
        u8 au8StartTime[4];
@@ -1181,8 +1181,8 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
                *(pu8CurrByte++) = ((ptstrJoinBssParam->tsf) >> 16) & 0xFF;
                *(pu8CurrByte++) = ((ptstrJoinBssParam->tsf) >> 24) & 0xFF;
 
-               *(pu8CurrByte++) = ptstrJoinBssParam->u8Index;
                *(pu8CurrByte++) = ptstrJoinBssParam->opp_enabled;
+               *(pu8CurrByte++) = ptstrJoinBssParam->idx;
 
                if (ptstrJoinBssParam->opp_enabled)
                        *(pu8CurrByte++) = ptstrJoinBssParam->ct_window;
@@ -4944,7 +4944,7 @@ static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo)
 
                                pNewJoinBssParam->tsf = ptstrNetworkInfo->u32Tsf;
                                pNewJoinBssParam->noa_enabled = 1;
-                               pNewJoinBssParam->u8Index = pu8IEs[index + 9];
+                               pNewJoinBssParam->idx = pu8IEs[index + 9];
 
                                if (pu8IEs[index + 10] & BIT(7)) {
                                        pNewJoinBssParam->opp_enabled = 1;