Commit 5e768067 authored by Nishanth Menon's avatar Nishanth Menon Committed by Greg Kroah-Hartman

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: default avatarNishanth Menon <nm@ti.com>
Reviewed-by: default avatarFelipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent c8c1ad8c
...@@ -1863,10 +1863,10 @@ bool wait_for_start(struct bridge_dev_context *dev_context, u32 dw_sync_addr) ...@@ -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) while (*((volatile u16 *)dw_sync_addr) && --timeout)
udelay(10); udelay(10);
/* If timed out: return FALSE */ /* If timed out: return false */
if (!timeout) { if (!timeout) {
pr_err("%s: Timed out waiting DSP to Start\n", __func__); pr_err("%s: Timed out waiting DSP to Start\n", __func__);
return FALSE; return false;
} }
return TRUE; return true;
} }
...@@ -23,9 +23,6 @@ ...@@ -23,9 +23,6 @@
* Internal state definitions for the dynamic loader * Internal state definitions for the dynamic loader
*/ */
#define TRUE 1
#define FALSE 0
/* type used for relocation intermediate results */ /* type used for relocation intermediate results */
typedef s32 rvalue; typedef s32 rvalue;
......
...@@ -14,8 +14,6 @@ ...@@ -14,8 +14,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/ */
#define TRUE 1
#define FALSE 0
#ifndef NULL #ifndef NULL
#define NULL 0 #define NULL 0
#endif #endif
......
...@@ -161,7 +161,7 @@ bool gb_test(struct gb_t_map *map, u32 bitn) ...@@ -161,7 +161,7 @@ bool gb_test(struct gb_t_map *map, u32 bitn)
mask = 1L << (bitn % BITS_PER_LONG); mask = 1L << (bitn % BITS_PER_LONG);
word = map->words[bitn / BITS_PER_LONG]; word = map->words[bitn / BITS_PER_LONG];
state = word & mask ? TRUE : FALSE; state = word & mask ? true : false;
return state; return state;
} }
...@@ -19,16 +19,6 @@ ...@@ -19,16 +19,6 @@
#ifndef _GLOBALTYPES_H #ifndef _GLOBALTYPES_H
#define _GLOBALTYPES_H #define _GLOBALTYPES_H
/*
* Definition: TRUE, FALSE
*
* DESCRIPTION: Boolean Definitions
*/
#ifndef TRUE
#define FALSE 0
#define TRUE (!(FALSE))
#endif
/* /*
* Definition: NULL * Definition: NULL
* *
......
...@@ -41,17 +41,6 @@ ...@@ -41,17 +41,6 @@
#define CONST const #define CONST const
#endif #endif
/*===========================================================================*/
/* Boolean constants */
/*===========================================================================*/
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
/*===========================================================================*/ /*===========================================================================*/
/* NULL (Definition is language specific) */ /* NULL (Definition is language specific) */
/*===========================================================================*/ /*===========================================================================*/
......
...@@ -1226,7 +1226,7 @@ static int dbll_rmm_alloc(struct dynamic_loader_allocate *this, ...@@ -1226,7 +1226,7 @@ static int dbll_rmm_alloc(struct dynamic_loader_allocate *this,
int status = 0; int status = 0;
u32 mem_sect_type; u32 mem_sect_type;
struct rmm_addr rmm_addr_obj; struct rmm_addr rmm_addr_obj;
s32 ret = TRUE; s32 ret = true;
unsigned stype = DLOAD_SECTION_TYPE(info->type); unsigned stype = DLOAD_SECTION_TYPE(info->type);
char *token = NULL; char *token = NULL;
char *sz_sec_last_token = NULL; char *sz_sec_last_token = NULL;
...@@ -1315,7 +1315,7 @@ static int dbll_rmm_alloc(struct dynamic_loader_allocate *this, ...@@ -1315,7 +1315,7 @@ static int dbll_rmm_alloc(struct dynamic_loader_allocate *this,
rmm_handle, mem_sect_type, rmm_handle, mem_sect_type,
alloc_size, align, alloc_size, align,
(u32 *) &rmm_addr_obj, (u32 *) &rmm_addr_obj,
seg_id, req, FALSE); seg_id, req, false);
} }
if (DSP_FAILED(status)) { if (DSP_FAILED(status)) {
ret = false; ret = false;
......
...@@ -503,7 +503,7 @@ u32 dmm_mem_map_dump(struct dmm_object *dmm_mgr) ...@@ -503,7 +503,7 @@ u32 dmm_mem_map_dump(struct dmm_object *dmm_mgr)
for (i = 0; i < table_size; i += for (i = 0; i < table_size; i +=
virtual_mapping_table[i].region_size) { virtual_mapping_table[i].region_size) {
curr_node = virtual_mapping_table + i; curr_node = virtual_mapping_table + i;
if (curr_node->reserved == TRUE) { if (curr_node->reserved) {
/*printk("RESERVED size = 0x%x, " /*printk("RESERVED size = 0x%x, "
"Map size = 0x%x\n", "Map size = 0x%x\n",
(curr_node->region_size * PG_SIZE4K), (curr_node->region_size * PG_SIZE4K),
......
...@@ -2620,7 +2620,7 @@ static void delete_node(struct node_object *hnode, ...@@ -2620,7 +2620,7 @@ static void delete_node(struct node_object *hnode,
/* Free all SM address translator resources */ /* Free all SM address translator resources */
if (xlator) { if (xlator) {
(void)cmm_xlator_delete(xlator, TRUE); /* force free */ (void)cmm_xlator_delete(xlator, true); /* force free */
xlator = NULL; xlator = NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment