staging: wilc1000: rename hSemInactiveTime of struct host_if_drv
authorLeo Kim <leo.kim@atmel.com>
Thu, 29 Oct 2015 02:58:33 +0000 (11:58 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch renames hSemInactiveTime of struct host_if_drv to sem_inactive_time
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 b59551a728dd4fff6cc478dc75e01fef8741d9ff..f95d662cbdbb3aa721deb602aa6367874519bbd5 100644 (file)
@@ -2211,7 +2211,7 @@ static s32 Handle_Get_InActiveTime(struct host_if_drv *hif_drv,
 
        PRINT_D(CFG80211_DBG, "Getting inactive time : %d\n", inactive_time);
 
-       up(&hif_drv->hSemInactiveTime);
+       up(&hif_drv->sem_inactive_time);
 
        return result;
 }
@@ -3765,7 +3765,7 @@ s32 host_int_get_inactive_time(struct host_if_drv *hif_drv,
        if (result)
                PRINT_ER("Failed to send get host channel param's message queue ");
 
-       down(&hif_drv->hSemInactiveTime);
+       down(&hif_drv->sem_inactive_time);
 
        *pu32InactiveTime = inactive_time;
 
@@ -4112,7 +4112,7 @@ s32 host_int_init(struct net_device *dev, struct host_if_drv **hif_drv_handler)
        sema_init(&hif_drv->sem_get_rssi, 0);
        sema_init(&hif_drv->sem_get_link_speed, 0);
        sema_init(&hif_drv->sem_get_chnl, 0);
-       sema_init(&hif_drv->hSemInactiveTime, 0);
+       sema_init(&hif_drv->sem_inactive_time, 0);
 
        PRINT_D(HOSTINF_DBG, "INIT: CLIENT COUNT %d\n", clients_count);
 
index 8d12099d584fc34e550e7076b93a98d331f1239c..de3baaf4d2e46cbaf3e070b09b87fc9d48df249b 100644 (file)
@@ -310,7 +310,7 @@ struct host_if_drv {
        struct semaphore sem_get_rssi;
        struct semaphore sem_get_link_speed;
        struct semaphore sem_get_chnl;
-       struct semaphore hSemInactiveTime;
+       struct semaphore sem_inactive_time;
 /* timer handlers */
        struct timer_list hScanTimer;
        struct timer_list hConnectTimer;
This page took 0.027341 seconds and 5 git commands to generate.