staging: wilc1000: rename pstrNext in struct message

This patch renames pstrNext to next to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chaehyun Lim 2016-01-21 20:30:34 +09:00 committed by Greg Kroah-Hartman
parent d3ff0580b9
commit 3356116124
2 changed files with 7 additions and 7 deletions

View file

@ -38,7 +38,7 @@ int wilc_mq_destroy(WILC_MsgQueueHandle *pHandle)
}
while (pHandle->pstrMessageList) {
struct message *pstrMessge = pHandle->pstrMessageList->pstrNext;
struct message *pstrMessge = pHandle->pstrMessageList->next;
kfree(pHandle->pstrMessageList);
pHandle->pstrMessageList = pstrMessge;
@ -75,7 +75,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
return -ENOMEM;
pstrMessage->len = u32SendBufferSize;
pstrMessage->pstrNext = NULL;
pstrMessage->next = NULL;
pstrMessage->buf = kmemdup(pvSendBuffer, u32SendBufferSize,
GFP_ATOMIC);
if (!pstrMessage->buf) {
@ -91,10 +91,10 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
} else {
struct message *pstrTailMsg = pHandle->pstrMessageList;
while (pstrTailMsg->pstrNext)
pstrTailMsg = pstrTailMsg->pstrNext;
while (pstrTailMsg->next)
pstrTailMsg = pstrTailMsg->next;
pstrTailMsg->pstrNext = pstrMessage;
pstrTailMsg->next = pstrMessage;
}
spin_unlock_irqrestore(&pHandle->strCriticalSection, flags);
@ -154,7 +154,7 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
memcpy(pvRecvBuffer, pstrMessage->buf, pstrMessage->len);
*pu32ReceivedLength = pstrMessage->len;
pHandle->pstrMessageList = pstrMessage->pstrNext;
pHandle->pstrMessageList = pstrMessage->next;
kfree(pstrMessage->buf);
kfree(pstrMessage);

View file

@ -16,7 +16,7 @@
struct message {
void *buf;
u32 len;
struct message *pstrNext;
struct message *next;
};
typedef struct __MessageQueue_struct {