summaryrefslogtreecommitdiff
path: root/drivers/staging/tidspbridge/pmgr/dbll.c
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2010-07-13 02:55:59 +0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 21:48:42 +0400
commit5e7680679e4ac852db7b03e232f3472f86d4c47f (patch)
tree403eab253aeed7290b47bff30ef86bfa77b0213d /drivers/staging/tidspbridge/pmgr/dbll.c
parentc8c1ad8ce317c1e213db47f094d6eee8dec7d280 (diff)
downloadlinux-5e7680679e4ac852db7b03e232f3472f86d4c47f.tar.xz
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>
Diffstat (limited to 'drivers/staging/tidspbridge/pmgr/dbll.c')
-rw-r--r--drivers/staging/tidspbridge/pmgr/dbll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/tidspbridge/pmgr/dbll.c b/drivers/staging/tidspbridge/pmgr/dbll.c
index 16dbde8cf886..05601dc55276 100644
--- a/drivers/staging/tidspbridge/pmgr/dbll.c
+++ b/drivers/staging/tidspbridge/pmgr/dbll.c
@@ -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;