Commit 9b849fd9 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: rename hSem in struct message_queue

This patch renames hSem to sem to avoid camelcase.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ba89554
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
int wilc_mq_create(struct message_queue *pHandle) int wilc_mq_create(struct message_queue *pHandle)
{ {
spin_lock_init(&pHandle->strCriticalSection); spin_lock_init(&pHandle->strCriticalSection);
sema_init(&pHandle->hSem, 0); sema_init(&pHandle->sem, 0);
pHandle->pstrMessageList = NULL; pHandle->pstrMessageList = NULL;
pHandle->u32ReceiversCount = 0; pHandle->u32ReceiversCount = 0;
pHandle->bExiting = false; pHandle->bExiting = false;
...@@ -33,7 +33,7 @@ int wilc_mq_destroy(struct message_queue *pHandle) ...@@ -33,7 +33,7 @@ int wilc_mq_destroy(struct message_queue *pHandle)
/* Release any waiting receiver thread. */ /* Release any waiting receiver thread. */
while (pHandle->u32ReceiversCount > 0) { while (pHandle->u32ReceiversCount > 0) {
up(&pHandle->hSem); up(&pHandle->sem);
pHandle->u32ReceiversCount--; pHandle->u32ReceiversCount--;
} }
...@@ -99,7 +99,7 @@ int wilc_mq_send(struct message_queue *pHandle, ...@@ -99,7 +99,7 @@ int wilc_mq_send(struct message_queue *pHandle,
spin_unlock_irqrestore(&pHandle->strCriticalSection, flags); spin_unlock_irqrestore(&pHandle->strCriticalSection, flags);
up(&pHandle->hSem); up(&pHandle->sem);
return 0; return 0;
} }
...@@ -132,7 +132,7 @@ int wilc_mq_recv(struct message_queue *pHandle, ...@@ -132,7 +132,7 @@ int wilc_mq_recv(struct message_queue *pHandle,
pHandle->u32ReceiversCount++; pHandle->u32ReceiversCount++;
spin_unlock_irqrestore(&pHandle->strCriticalSection, flags); spin_unlock_irqrestore(&pHandle->strCriticalSection, flags);
down(&pHandle->hSem); down(&pHandle->sem);
spin_lock_irqsave(&pHandle->strCriticalSection, flags); spin_lock_irqsave(&pHandle->strCriticalSection, flags);
pstrMessage = pHandle->pstrMessageList; pstrMessage = pHandle->pstrMessageList;
...@@ -144,7 +144,7 @@ int wilc_mq_recv(struct message_queue *pHandle, ...@@ -144,7 +144,7 @@ int wilc_mq_recv(struct message_queue *pHandle,
/* check buffer size */ /* check buffer size */
if (u32RecvBufferSize < pstrMessage->len) { if (u32RecvBufferSize < pstrMessage->len) {
spin_unlock_irqrestore(&pHandle->strCriticalSection, flags); spin_unlock_irqrestore(&pHandle->strCriticalSection, flags);
up(&pHandle->hSem); up(&pHandle->sem);
PRINT_ER("u32RecvBufferSize overflow\n"); PRINT_ER("u32RecvBufferSize overflow\n");
return -EOVERFLOW; return -EOVERFLOW;
} }
......
...@@ -20,7 +20,7 @@ struct message { ...@@ -20,7 +20,7 @@ struct message {
}; };
struct message_queue { struct message_queue {
struct semaphore hSem; struct semaphore sem;
spinlock_t strCriticalSection; spinlock_t strCriticalSection;
bool bExiting; bool bExiting;
u32 u32ReceiversCount; u32 u32ReceiversCount;
......
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