]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename u8NoaEnbaled of struct join_bss_param
authorLeo Kim <leo.kim@atmel.com>
Thu, 15 Oct 2015 04:24:43 +0000 (13:24 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 04:37:18 +0000 (21:37 -0700)
This patch renames u8NoaEnbaled of struct join_bss_param to noa_enabled
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 5dc7c99e62acc1af8bc219670b2da195d1c6770c..ee86a69a1fcd2556547320d3dcd8bd8a9e253c41 100644 (file)
@@ -219,7 +219,7 @@ struct join_bss_param {
        u8 rsn_auth_policy[3];
        u8 rsn_cap[2];
        u32 tsf;
-       u8 u8NoaEnbaled;
+       u8 noa_enabled;
        u8 u8OppEnable;
        u8 u8CtWindow;
        u8 u8Count;
@@ -1171,9 +1171,9 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
        pu8CurrByte += sizeof(ptstrJoinBssParam->rsn_cap);
 
        *(pu8CurrByte++) = REAL_JOIN_REQ;
+       *(pu8CurrByte++) = ptstrJoinBssParam->noa_enabled;
 
-       *(pu8CurrByte++) = ptstrJoinBssParam->u8NoaEnbaled;
-       if (ptstrJoinBssParam->u8NoaEnbaled) {
+       if (ptstrJoinBssParam->noa_enabled) {
                PRINT_D(HOSTINF_DBG, "NOA present\n");
 
                *(pu8CurrByte++) = (ptstrJoinBssParam->tsf) & 0xFF;
@@ -4944,7 +4944,7 @@ static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo)
                                u16 u16P2P_count;
 
                                pNewJoinBssParam->tsf = ptstrNetworkInfo->u32Tsf;
-                               pNewJoinBssParam->u8NoaEnbaled = 1;
+                               pNewJoinBssParam->noa_enabled = 1;
                                pNewJoinBssParam->u8Index = pu8IEs[index + 9];
 
                                if (pu8IEs[index + 10] & BIT(7)) {