summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/host_interface.c
diff options
context:
space:
mode:
authorChaehyun Lim2015-06-11 07:34:32 +0200
committerGreg Kroah-Hartman2015-06-11 18:07:19 +0200
commit3703480b02446b35e8427f6a114a5690b64324a8 (patch)
treef93db788a044e5b59e697202dc4b5946e8633eb4 /drivers/staging/wilc1000/host_interface.c
parentlustre: ptlrpc: Replace uses of OBD_{ALLOC,FREE}_LARGE (diff)
downloadkernel-qcow2-linux-3703480b02446b35e8427f6a114a5690b64324a8.tar.gz
kernel-qcow2-linux-3703480b02446b35e8427f6a114a5690b64324a8.tar.xz
kernel-qcow2-linux-3703480b02446b35e8427f6a114a5690b64324a8.zip
staging: wilc1000: remove UWORD8
Use u8 instead of UWORD8. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/host_interface.c')
-rw-r--r--drivers/staging/wilc1000/host_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index 1ecb37341780..b2bbb45143d1 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -3692,7 +3692,7 @@ static void Handle_DelAllSta(void *drvHandler, tstrHostIFDelAllSta *pstrDelAllSt
u8 *pu8CurrByte;
tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)drvHandler;
u8 i;
- UWORD8 au8Zero_Buff[6] = {0};
+ u8 au8Zero_Buff[6] = {0};
strWID.u16WIDid = (WILC_Uint16)WID_DEL_ALL_STA;
strWID.enuWIDtype = WID_STR;
strWID.s32ValueSize = (pstrDelAllStaParam->u8Num_AssocSta * ETH_ALEN) + 1;