Commit 27ff2168 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename variable hSemDeinitDrvHandle

This patch renames variable hSemDeinitDrvHandle to hif_sema_driver
to avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 834e0cb0
...@@ -236,7 +236,7 @@ u8 P2P_LISTEN_STATE; ...@@ -236,7 +236,7 @@ u8 P2P_LISTEN_STATE;
static struct task_struct *hif_thread_handler; static struct task_struct *hif_thread_handler;
static WILC_MsgQueueHandle hif_msg_q; static WILC_MsgQueueHandle hif_msg_q;
static struct semaphore hif_sema_thread; static struct semaphore hif_sema_thread;
struct semaphore hSemDeinitDrvHandle; struct semaphore hif_sema_driver;
static struct semaphore hWaitResponse; static struct semaphore hWaitResponse;
struct semaphore hSemHostIntDeinit; struct semaphore hSemHostIntDeinit;
struct timer_list g_hPeriodicRSSI; struct timer_list g_hPeriodicRSSI;
...@@ -364,8 +364,7 @@ static s32 Handle_SetWfiDrvHandler(struct host_if_drv *hif_drv, ...@@ -364,8 +364,7 @@ static s32 Handle_SetWfiDrvHandler(struct host_if_drv *hif_drv,
pstrHostIfSetDrvHandler->u32Address); pstrHostIfSetDrvHandler->u32Address);
if (!hif_drv) if (!hif_drv)
up(&hSemDeinitDrvHandle); up(&hif_sema_driver);
if (s32Error) { if (s32Error) {
PRINT_ER("Failed to set driver handler\n"); PRINT_ER("Failed to set driver handler\n");
...@@ -392,8 +391,7 @@ static s32 Handle_SetOperationMode(struct host_if_drv *hif_drv, ...@@ -392,8 +391,7 @@ static s32 Handle_SetOperationMode(struct host_if_drv *hif_drv,
if ((pstrHostIfSetOperationMode->u32Mode) == IDLE_MODE) if ((pstrHostIfSetOperationMode->u32Mode) == IDLE_MODE)
up(&hSemDeinitDrvHandle); up(&hif_sema_driver);
if (s32Error) { if (s32Error) {
PRINT_ER("Failed to set driver handler\n"); PRINT_ER("Failed to set driver handler\n");
...@@ -4214,7 +4212,7 @@ s32 host_int_init(struct host_if_drv **hif_drv_handler) ...@@ -4214,7 +4212,7 @@ s32 host_int_init(struct host_if_drv **hif_drv_handler)
PRINT_D(HOSTINF_DBG, "Global handle pointer value=%p\n", hif_drv); PRINT_D(HOSTINF_DBG, "Global handle pointer value=%p\n", hif_drv);
if (clients_count == 0) { if (clients_count == 0) {
sema_init(&hif_sema_thread, 0); sema_init(&hif_sema_thread, 0);
sema_init(&hSemDeinitDrvHandle, 0); sema_init(&hif_sema_driver, 0);
sema_init(&hSemHostIntDeinit, 1); sema_init(&hSemHostIntDeinit, 1);
} }
...@@ -4320,7 +4318,7 @@ s32 host_int_deinit(struct host_if_drv *hif_drv) ...@@ -4320,7 +4318,7 @@ s32 host_int_deinit(struct host_if_drv *hif_drv)
del_timer_sync(&hif_drv->hRemainOnChannel); del_timer_sync(&hif_drv->hRemainOnChannel);
host_int_set_wfi_drv_handler(NULL); host_int_set_wfi_drv_handler(NULL);
down(&hSemDeinitDrvHandle); down(&hif_sema_driver);
if (hif_drv->strWILC_UsrScanReq.pfUserScanResult) { if (hif_drv->strWILC_UsrScanReq.pfUserScanResult) {
hif_drv->strWILC_UsrScanReq.pfUserScanResult(SCAN_EVENT_ABORTED, NULL, hif_drv->strWILC_UsrScanReq.pfUserScanResult(SCAN_EVENT_ABORTED, NULL,
......
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