staging: wilc1000: remove UWORD32
Use u32 instead of UWORD32. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3703480b02
commit
8a54d91719
2 changed files with 3 additions and 4 deletions
|
@ -499,10 +499,10 @@ INLINE WILC_Uint32 get_beacon_timestamp_lo(u8 *data)
|
||||||
return time_stamp;
|
return time_stamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
INLINE UWORD32 get_beacon_timestamp_hi(u8 *data)
|
INLINE u32 get_beacon_timestamp_hi(u8 *data)
|
||||||
{
|
{
|
||||||
UWORD32 time_stamp = 0;
|
u32 time_stamp = 0;
|
||||||
UWORD32 index = (MAC_HDR_LEN + 4);
|
u32 index = (MAC_HDR_LEN + 4);
|
||||||
|
|
||||||
time_stamp |= data[index++];
|
time_stamp |= data[index++];
|
||||||
time_stamp |= (data[index++] << 8);
|
time_stamp |= (data[index++] << 8);
|
||||||
|
|
|
@ -44,7 +44,6 @@
|
||||||
typedef int WORD32;
|
typedef int WORD32;
|
||||||
typedef short WORD16;
|
typedef short WORD16;
|
||||||
typedef char WORD8;
|
typedef char WORD8;
|
||||||
typedef unsigned int UWORD32;
|
|
||||||
typedef unsigned short UWORD16;
|
typedef unsigned short UWORD16;
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
Loading…
Add table
Reference in a new issue