rtl8188eu: Replace _FALSE and _TRUE

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2014-12-28 20:13:24 -06:00
parent 17d1637977
commit 06334102cd
68 changed files with 2553 additions and 2572 deletions

View file

@ -366,9 +366,9 @@ enum WIFI_REG_DOMAIN {
__inline static int IS_MCAST(unsigned char *da)
{
if ((*da) & 0x01)
return _TRUE;
return true;
else
return _FALSE;
return false;
}
@ -449,9 +449,9 @@ __inline static unsigned char * get_hdr_bssid(unsigned char *pframe)
__inline static int IsFrameTypeCtrl(unsigned char *pframe)
{
if(WIFI_CTRL_TYPE == GetFrameType(pframe))
return _TRUE;
return true;
else
return _FALSE;
return false;
}
/*-----------------------------------------------------------------------------
Below is for the security related definition