staging: wilc1000: rename IsHTCapable of struct user_conn_req
authorLeo Kim <leo.kim@atmel.com>
Thu, 29 Oct 2015 03:05:26 +0000 (12:05 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames IsHTCapable of struct user_conn_req to ht_capable
to avoid CamelCase naming convention.

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

index dc94d00963959099b4ae9ca455adda4eb63862a5..f1f1ef4b41570eac3ac08d1a69ef221eff39033a 100644 (file)
@@ -1143,7 +1143,7 @@ static s32 Handle_Connect(struct host_if_drv *hif_drv,
        *(pu8CurrByte++)  = ptstrJoinBssParam->uapsd_cap;
 
        *(pu8CurrByte++)  = ptstrJoinBssParam->ht_capable;
-       hif_drv->usr_conn_req.IsHTCapable = ptstrJoinBssParam->ht_capable;
+       hif_drv->usr_conn_req.ht_capable = ptstrJoinBssParam->ht_capable;
 
        *(pu8CurrByte++)  =  ptstrJoinBssParam->rsn_found;
        PRINT_D(HOSTINF_DBG, "* rsn found %d*\n", *(pu8CurrByte - 1));
index 036306814d6770fa051c3607211e8c1670004e80..3afe4323072d4900a47219aefbbce47fee5c7f16 100644 (file)
@@ -207,7 +207,7 @@ struct user_conn_req {
        u8 *ies;
        size_t ies_len;
        wilc_connect_result conn_result;
-       bool IsHTCapable;
+       bool ht_capable;
        void *u32UserConnectPvoid;
 };
 
This page took 0.027052 seconds and 5 git commands to generate.