mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 20:58:14 -04:00
staging: wilc1000: rename hSemTestDisconnectBlock of struct host_if_drv
This patch renames hSemTestDisconnectBlock of struct host_if_drv to sem_test_disconn_block 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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
9ea47133ec
commit
e55e49670b
@@ -2041,7 +2041,7 @@ static void Handle_Disconnect(struct host_if_drv *hif_drv)
|
||||
}
|
||||
}
|
||||
|
||||
up(&hif_drv->hSemTestDisconnectBlock);
|
||||
up(&hif_drv->sem_test_disconn_block);
|
||||
}
|
||||
|
||||
void resolve_disconnect_aberration(struct host_if_drv *hif_drv)
|
||||
@@ -3563,7 +3563,7 @@ s32 host_int_disconnect(struct host_if_drv *hif_drv, u16 u16ReasonCode)
|
||||
if (result)
|
||||
PRINT_ER("Failed to send message queue: disconnect\n");
|
||||
|
||||
down(&hif_drv->hSemTestDisconnectBlock);
|
||||
down(&hif_drv->sem_test_disconn_block);
|
||||
|
||||
return result;
|
||||
}
|
||||
@@ -4108,7 +4108,7 @@ s32 host_int_init(struct net_device *dev, struct host_if_drv **hif_drv_handler)
|
||||
}
|
||||
|
||||
sema_init(&hif_drv->sem_test_key_block, 0);
|
||||
sema_init(&hif_drv->hSemTestDisconnectBlock, 0);
|
||||
sema_init(&hif_drv->sem_test_disconn_block, 0);
|
||||
sema_init(&hif_drv->hSemGetRSSI, 0);
|
||||
sema_init(&hif_drv->hSemGetLINKSPEED, 0);
|
||||
sema_init(&hif_drv->hSemGetCHNL, 0);
|
||||
|
||||
@@ -306,7 +306,7 @@ struct host_if_drv {
|
||||
|
||||
struct semaphore sem_cfg_values;
|
||||
struct semaphore sem_test_key_block;
|
||||
struct semaphore hSemTestDisconnectBlock;
|
||||
struct semaphore sem_test_disconn_block;
|
||||
struct semaphore hSemGetRSSI;
|
||||
struct semaphore hSemGetLINKSPEED;
|
||||
struct semaphore hSemGetCHNL;
|
||||
|
||||
Reference in New Issue
Block a user