]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: rename au8Interval of struct join_bss_param
authorLeo Kim <leo.kim@atmel.com>
Thu, 15 Oct 2015 04:24:49 +0000 (13:24 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 04:37:18 +0000 (21:37 -0700)
This patch renames au8Interval of struct join_bss_param to interval
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 070dede37b03f1ac8894b2c72f13edf3c4c6b706..9550af5a0454de5a29483bb1982ecda3852f7312 100644 (file)
@@ -225,7 +225,7 @@ struct join_bss_param {
        u8 cnt;
        u8 idx;
        u8 duration[4];
-       u8 au8Interval[4];
+       u8 interval[4];
        u8 au8StartTime[4];
 };
 
@@ -1192,9 +1192,8 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
                memcpy(pu8CurrByte, ptstrJoinBssParam->duration, sizeof(ptstrJoinBssParam->duration));
                pu8CurrByte += sizeof(ptstrJoinBssParam->duration);
 
-               memcpy(pu8CurrByte, ptstrJoinBssParam->au8Interval, sizeof(ptstrJoinBssParam->au8Interval));
-
-               pu8CurrByte += sizeof(ptstrJoinBssParam->au8Interval);
+               memcpy(pu8CurrByte, ptstrJoinBssParam->interval, sizeof(ptstrJoinBssParam->interval));
+               pu8CurrByte += sizeof(ptstrJoinBssParam->interval);
 
                memcpy(pu8CurrByte, ptstrJoinBssParam->au8StartTime, sizeof(ptstrJoinBssParam->au8StartTime));
 
@@ -4962,7 +4961,7 @@ static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo)
                                memcpy(pNewJoinBssParam->duration, pu8IEs + u16P2P_count, 4);
                                u16P2P_count += 4;
 
-                               memcpy(pNewJoinBssParam->au8Interval, pu8IEs + u16P2P_count, 4);
+                               memcpy(pNewJoinBssParam->interval, pu8IEs + u16P2P_count, 4);
                                u16P2P_count += 4;
 
                                memcpy(pNewJoinBssParam->au8StartTime, pu8IEs + u16P2P_count, 4);