aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorliuwei <liuwei@actions-semi.com>2015-11-18 12:36:41 +0800
committerliuwei <liuwei@actions-semi.com>2015-11-18 12:47:21 +0800
commit17c758047181c740bcf09b5f7545668c25d1ac5b (patch)
tree3f2e4e1c25ca4f499a6df3e42177046ee99f4f11 /common
parent1188b8d2f77177eba5edd4cb9d54edb8bca02f12 (diff)
board_f: print relocate address for debug
Change-Id: I12c9e462ea56de041e554ed5b966071975aa6121
Diffstat (limited to 'common')
-rw-r--r--common/board_f.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/board_f.c b/common/board_f.c
index fbbad1bcb9..026d978c42 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -676,8 +676,8 @@ static int setup_reloc(void)
#endif
memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
- debug("Relocation Offset is: %08lx\n", gd->reloc_off);
- debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
+ printf("Relocation Offset is: %08lx\n", gd->reloc_off);
+ printf("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
gd->start_addr_sp);