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>
This commit is contained in:
parent
ee0ec1946e
commit
3703480b02
|
@ -499,7 +499,7 @@ INLINE WILC_Uint32 get_beacon_timestamp_lo(u8 *data)
|
||||||
return time_stamp;
|
return time_stamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
INLINE UWORD32 get_beacon_timestamp_hi(UWORD8 *data)
|
INLINE UWORD32 get_beacon_timestamp_hi(u8 *data)
|
||||||
{
|
{
|
||||||
UWORD32 time_stamp = 0;
|
UWORD32 time_stamp = 0;
|
||||||
UWORD32 index = (MAC_HDR_LEN + 4);
|
UWORD32 index = (MAC_HDR_LEN + 4);
|
||||||
|
|
|
@ -3692,7 +3692,7 @@ static void Handle_DelAllSta(void *drvHandler, tstrHostIFDelAllSta *pstrDelAllSt
|
||||||
u8 *pu8CurrByte;
|
u8 *pu8CurrByte;
|
||||||
tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)drvHandler;
|
tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)drvHandler;
|
||||||
u8 i;
|
u8 i;
|
||||||
UWORD8 au8Zero_Buff[6] = {0};
|
u8 au8Zero_Buff[6] = {0};
|
||||||
strWID.u16WIDid = (WILC_Uint16)WID_DEL_ALL_STA;
|
strWID.u16WIDid = (WILC_Uint16)WID_DEL_ALL_STA;
|
||||||
strWID.enuWIDtype = WID_STR;
|
strWID.enuWIDtype = WID_STR;
|
||||||
strWID.s32ValueSize = (pstrDelAllStaParam->u8Num_AssocSta * ETH_ALEN) + 1;
|
strWID.s32ValueSize = (pstrDelAllStaParam->u8Num_AssocSta * ETH_ALEN) + 1;
|
||||||
|
|
|
@ -46,7 +46,6 @@ typedef short WORD16;
|
||||||
typedef char WORD8;
|
typedef char WORD8;
|
||||||
typedef unsigned int UWORD32;
|
typedef unsigned int UWORD32;
|
||||||
typedef unsigned short UWORD16;
|
typedef unsigned short UWORD16;
|
||||||
typedef unsigned char UWORD8;
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Enums */
|
/* Enums */
|
||||||
|
|
Loading…
Reference in New Issue