rtl8188eu: Change BOOLEAN to bool

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2015-03-02 17:21:23 -06:00
parent 4081d131cc
commit 0b5c6eb35b
42 changed files with 402 additions and 404 deletions

View file

@ -77,7 +77,7 @@ hal_com_get_channel_plan(
IN u8 hw_channel_plan, /* channel plan from HW (efuse/eeprom) */
IN u8 sw_channel_plan, /* channel plan from SW (registry/module param) */
IN u8 def_channel_plan, /* channel plan used when the former two is invalid */
IN BOOLEAN AutoLoadFail
IN bool AutoLoadFail
)
{
u8 swConfig;
@ -193,7 +193,7 @@ _OneOutPipeMapping(
static void
_TwoOutPipeMapping(
IN struct adapter *pAdapter,
IN BOOLEAN bWIFICfg
IN bool bWIFICfg
)
{
struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(pAdapter);
@ -238,7 +238,7 @@ _TwoOutPipeMapping(
static void _ThreeOutPipeMapping(
IN struct adapter *pAdapter,
IN BOOLEAN bWIFICfg
IN bool bWIFICfg
)
{
struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(pAdapter);
@ -280,7 +280,7 @@ static void _ThreeOutPipeMapping(
}
BOOLEAN
bool
Hal_MappingOutPipe(
IN struct adapter *pAdapter,
IN u8 NumOutPipe
@ -288,9 +288,9 @@ Hal_MappingOutPipe(
{
struct registry_priv *pregistrypriv = &pAdapter->registrypriv;
BOOLEAN bWIFICfg = (pregistrypriv->wifi_spec) ?true:false;
bool bWIFICfg = (pregistrypriv->wifi_spec) ?true:false;
BOOLEAN result = true;
bool result = true;
switch(NumOutPipe)
{