Commit 4ea90008 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename hSemGetCHNL of struct host_if_drv

This patch renames hSemGetCHNL of struct host_if_drv to sem_get_chnl
to avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bc34da66
...@@ -2075,7 +2075,7 @@ static s32 Handle_GetChnl(struct host_if_drv *hif_drv) ...@@ -2075,7 +2075,7 @@ static s32 Handle_GetChnl(struct host_if_drv *hif_drv)
result = -EFAULT; result = -EFAULT;
} }
up(&hif_drv->hSemGetCHNL); up(&hif_drv->sem_get_chnl);
return result; return result;
} }
...@@ -3737,7 +3737,7 @@ s32 host_int_get_host_chnl_num(struct host_if_drv *hif_drv, u8 *pu8ChNo) ...@@ -3737,7 +3737,7 @@ s32 host_int_get_host_chnl_num(struct host_if_drv *hif_drv, u8 *pu8ChNo)
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg)); result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
if (result) if (result)
PRINT_ER("wilc mq send fail\n"); PRINT_ER("wilc mq send fail\n");
down(&hif_drv->hSemGetCHNL); down(&hif_drv->sem_get_chnl);
*pu8ChNo = ch_no; *pu8ChNo = ch_no;
...@@ -4111,7 +4111,7 @@ s32 host_int_init(struct net_device *dev, struct host_if_drv **hif_drv_handler) ...@@ -4111,7 +4111,7 @@ s32 host_int_init(struct net_device *dev, struct host_if_drv **hif_drv_handler)
sema_init(&hif_drv->sem_test_disconn_block, 0); sema_init(&hif_drv->sem_test_disconn_block, 0);
sema_init(&hif_drv->sem_get_rssi, 0); sema_init(&hif_drv->sem_get_rssi, 0);
sema_init(&hif_drv->sem_get_link_speed, 0); sema_init(&hif_drv->sem_get_link_speed, 0);
sema_init(&hif_drv->hSemGetCHNL, 0); sema_init(&hif_drv->sem_get_chnl, 0);
sema_init(&hif_drv->hSemInactiveTime, 0); sema_init(&hif_drv->hSemInactiveTime, 0);
PRINT_D(HOSTINF_DBG, "INIT: CLIENT COUNT %d\n", clients_count); PRINT_D(HOSTINF_DBG, "INIT: CLIENT COUNT %d\n", clients_count);
......
...@@ -309,7 +309,7 @@ struct host_if_drv { ...@@ -309,7 +309,7 @@ struct host_if_drv {
struct semaphore sem_test_disconn_block; struct semaphore sem_test_disconn_block;
struct semaphore sem_get_rssi; struct semaphore sem_get_rssi;
struct semaphore sem_get_link_speed; struct semaphore sem_get_link_speed;
struct semaphore hSemGetCHNL; struct semaphore sem_get_chnl;
struct semaphore hSemInactiveTime; struct semaphore hSemInactiveTime;
/* timer handlers */ /* timer handlers */
struct timer_list hScanTimer; struct timer_list hScanTimer;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment