mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
staging: wilc1000: rename WILC_MsgQueueRecv to wilc_mq_recv
This patch replaces WILC_MsgQueueRecv with wilc_mq_recv to shorten function name and 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:
committed by
Greg Kroah-Hartman
parent
79198138a8
commit
b986e33e1e
@@ -4332,7 +4332,7 @@ static int hostIFthread(void *pvArg)
|
||||
memset(&strHostIFmsg, 0, sizeof(tstrHostIFmsg));
|
||||
|
||||
while (1) {
|
||||
WILC_MsgQueueRecv(&gMsgQHostIF, &strHostIFmsg, sizeof(tstrHostIFmsg), &u32Ret);
|
||||
wilc_mq_recv(&gMsgQHostIF, &strHostIFmsg, sizeof(tstrHostIFmsg), &u32Ret);
|
||||
pstrWFIDrv = (tstrWILC_WFIDrv *)strHostIFmsg.drvHandler;
|
||||
if (strHostIFmsg.u16MsgId == HOST_IF_MSG_EXIT) {
|
||||
PRINT_D(GENERIC_DBG, "THREAD: Exiting HostIfThread\n");
|
||||
|
||||
@@ -110,7 +110,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
|
||||
* @note copied from FLO glue implementatuion
|
||||
* @version 1.0
|
||||
*/
|
||||
int WILC_MsgQueueRecv(WILC_MsgQueueHandle *pHandle,
|
||||
int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
|
||||
void *pvRecvBuffer, u32 u32RecvBufferSize,
|
||||
u32 *pu32ReceivedLength)
|
||||
{
|
||||
|
||||
@@ -63,7 +63,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
|
||||
* @date 30 Aug 2010
|
||||
* @version 1.0
|
||||
*/
|
||||
int WILC_MsgQueueRecv(WILC_MsgQueueHandle *pHandle,
|
||||
int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
|
||||
void *pvRecvBuffer, u32 u32RecvBufferSize,
|
||||
u32 *pu32ReceivedLength);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user