staging: wilc1000: renames u32Tsf of connect_resp_info structure
authorLeo Kim <leo.kim@atmel.com>
Thu, 4 Feb 2016 09:24:22 +0000 (18:24 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Feb 2016 01:34:58 +0000 (17:34 -0800)
This patch renames u32Tsf variable to tsf_lo.

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

index 6c748aa..3e1e1f5 100644 (file)
@@ -315,7 +315,7 @@ s32 wilc_parse_network_info(u8 *msg_buffer,
 
                rx_len = wid_len - 1;
                network_info->cap_info = get_cap_info(msa);
-               network_info->u32Tsf = get_beacon_timestamp_lo(msa);
+               network_info->tsf_lo = get_beacon_timestamp_lo(msa);
 
                tsf_lo = get_beacon_timestamp_lo(msa);
                tsf_hi = get_beacon_timestamp_hi(msa);
index 27c35d7..07a2ef0 100644 (file)
@@ -89,7 +89,7 @@ struct network_info {
        unsigned long time_scan;
        bool new_network;
        u8 found;
-       u32 u32Tsf;
+       u32 tsf_lo;
        u8 *pu8IEs;
        u16 u16IEsLen;
        void *pJoinParams;
index c0171f9..fa6ee92 100644 (file)
@@ -4330,7 +4330,7 @@ static void *host_int_ParseJoinBssParam(struct network_info *ptstrNetworkInfo)
                                 (pu8IEs[index + 5] == 0x09) && (pu8IEs[index + 6] == 0x0c)) {
                                u16 u16P2P_count;
 
-                               pNewJoinBssParam->tsf = ptstrNetworkInfo->u32Tsf;
+                               pNewJoinBssParam->tsf = ptstrNetworkInfo->tsf_lo;
                                pNewJoinBssParam->noa_enabled = 1;
                                pNewJoinBssParam->idx = pu8IEs[index + 9];