summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/wilc_msgqueue.c
diff options
context:
space:
mode:
authorChaehyun Lim2015-06-11 07:35:55 +0200
committerGreg Kroah-Hartman2015-06-11 18:08:59 +0200
commit4e4467fdd6e89fbbc5208636a85177e4b973ded9 (patch)
treea7f31d445fe491f0fdce558e3846f4348baa73ec /drivers/staging/wilc1000/wilc_msgqueue.c
parentstaging: wilc1000: remove WILC_Uint16 (diff)
downloadkernel-qcow2-linux-4e4467fdd6e89fbbc5208636a85177e4b973ded9.tar.gz
kernel-qcow2-linux-4e4467fdd6e89fbbc5208636a85177e4b973ded9.tar.xz
kernel-qcow2-linux-4e4467fdd6e89fbbc5208636a85177e4b973ded9.zip
staging: wilc1000: remove WILC_Uint32
Use u32 instead of WILC_Uint32. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/wilc_msgqueue.c')
-rw-r--r--drivers/staging/wilc1000/wilc_msgqueue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wilc1000/wilc_msgqueue.c b/drivers/staging/wilc1000/wilc_msgqueue.c
index ebbba8b24de0..8531bf1adb78 100644
--- a/drivers/staging/wilc1000/wilc_msgqueue.c
+++ b/drivers/staging/wilc1000/wilc_msgqueue.c
@@ -53,7 +53,7 @@ WILC_ErrNo WILC_MsgQueueDestroy(WILC_MsgQueueHandle *pHandle,
* @version 1.0
*/
WILC_ErrNo WILC_MsgQueueSend(WILC_MsgQueueHandle *pHandle,
- const void *pvSendBuffer, WILC_Uint32 u32SendBufferSize,
+ const void *pvSendBuffer, u32 u32SendBufferSize,
tstrWILC_MsgQueueAttrs *pstrAttrs)
{
WILC_ErrNo s32RetStatus = WILC_SUCCESS;
@@ -118,8 +118,8 @@ WILC_ErrNo WILC_MsgQueueSend(WILC_MsgQueueHandle *pHandle,
* @version 1.0
*/
WILC_ErrNo WILC_MsgQueueRecv(WILC_MsgQueueHandle *pHandle,
- void *pvRecvBuffer, WILC_Uint32 u32RecvBufferSize,
- WILC_Uint32 *pu32ReceivedLength,
+ void *pvRecvBuffer, u32 u32RecvBufferSize,
+ u32 *pu32ReceivedLength,
tstrWILC_MsgQueueAttrs *pstrAttrs)
{