staging: tidspbridge: remove custom TRUE FALSE

bool has standard true and false, we dont need to introduce
our own TRUE and FALSE macros.

Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Nishanth Menon 2010-07-12 17:55:59 -05:00 committed by Greg Kroah-Hartman
parent c8c1ad8ce3
commit 5e7680679e
9 changed files with 8 additions and 34 deletions

View file

@ -1863,10 +1863,10 @@ bool wait_for_start(struct bridge_dev_context *dev_context, u32 dw_sync_addr)
while (*((volatile u16 *)dw_sync_addr) && --timeout)
udelay(10);
/* If timed out: return FALSE */
/* If timed out: return false */
if (!timeout) {
pr_err("%s: Timed out waiting DSP to Start\n", __func__);
return FALSE;
return false;
}
return TRUE;
return true;
}

View file

@ -23,9 +23,6 @@
* Internal state definitions for the dynamic loader
*/
#define TRUE 1
#define FALSE 0
/* type used for relocation intermediate results */
typedef s32 rvalue;

View file

@ -14,8 +14,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#define TRUE 1
#define FALSE 0
#ifndef NULL
#define NULL 0
#endif

View file

@ -161,7 +161,7 @@ bool gb_test(struct gb_t_map *map, u32 bitn)
mask = 1L << (bitn % BITS_PER_LONG);
word = map->words[bitn / BITS_PER_LONG];
state = word & mask ? TRUE : FALSE;
state = word & mask ? true : false;
return state;
}

View file

@ -19,16 +19,6 @@
#ifndef _GLOBALTYPES_H
#define _GLOBALTYPES_H
/*
* Definition: TRUE, FALSE
*
* DESCRIPTION: Boolean Definitions
*/
#ifndef TRUE
#define FALSE 0
#define TRUE (!(FALSE))
#endif
/*
* Definition: NULL
*

View file

@ -41,17 +41,6 @@
#define CONST const
#endif
/*===========================================================================*/
/* Boolean constants */
/*===========================================================================*/
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
/*===========================================================================*/
/* NULL (Definition is language specific) */
/*===========================================================================*/

View file

@ -1226,7 +1226,7 @@ static int dbll_rmm_alloc(struct dynamic_loader_allocate *this,
int status = 0;
u32 mem_sect_type;
struct rmm_addr rmm_addr_obj;
s32 ret = TRUE;
s32 ret = true;
unsigned stype = DLOAD_SECTION_TYPE(info->type);
char *token = NULL;
char *sz_sec_last_token = NULL;
@ -1315,7 +1315,7 @@ func_cont:
rmm_handle, mem_sect_type,
alloc_size, align,
(u32 *) &rmm_addr_obj,
seg_id, req, FALSE);
seg_id, req, false);
}
if (DSP_FAILED(status)) {
ret = false;

View file

@ -503,7 +503,7 @@ u32 dmm_mem_map_dump(struct dmm_object *dmm_mgr)
for (i = 0; i < table_size; i +=
virtual_mapping_table[i].region_size) {
curr_node = virtual_mapping_table + i;
if (curr_node->reserved == TRUE) {
if (curr_node->reserved) {
/*printk("RESERVED size = 0x%x, "
"Map size = 0x%x\n",
(curr_node->region_size * PG_SIZE4K),

View file

@ -2620,7 +2620,7 @@ static void delete_node(struct node_object *hnode,
/* Free all SM address translator resources */
if (xlator) {
(void)cmm_xlator_delete(xlator, TRUE); /* force free */
(void)cmm_xlator_delete(xlator, true); /* force free */
xlator = NULL;
}