summaryrefslogtreecommitdiff
path: root/common/cmd_log.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-05-12 00:56:28 +0200
committerWolfgang Denk <wd@denx.de>2008-05-12 00:56:28 +0200
commitee0cfa70803a3e629ea581a9b216f8ecef402bfc (patch)
tree04fe5684e8cb6c4508b3afab2217e6478869f335 /common/cmd_log.c
parent02b9b22446e3d7ad6a6382be17a1ce79a7de589b (diff)
Revert "Avoid initrd and logbuffer area overlaps"
This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888 which breaks building on all PPC boards that don't use a log buffer.
Diffstat (limited to 'common/cmd_log.c')
-rw-r--r--common/cmd_log.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/common/cmd_log.c b/common/cmd_log.c
index 8e04941d6..b9f9ba034 100644
--- a/common/cmd_log.c
+++ b/common/cmd_log.c
@@ -66,12 +66,6 @@ static logbuff_t *log;
#endif
static char *lbuf;
-unsigned long __logbuffer_base(void)
-{
- return CFG_SDRAM_BASE + gd->bd->bi_memsize - LOGBUFF_LEN;
-}
-unsigned long logbuffer_base (void) __attribute__((weak, alias("__logbuffer_base")));
-
void logbuff_init_ptrs (void)
{
unsigned long tag, post_word;
@@ -81,7 +75,7 @@ void logbuff_init_ptrs (void)
log = (logbuff_t *)CONFIG_ALT_LH_ADDR;
lbuf = (char *)CONFIG_ALT_LB_ADDR;
#else
- log = (logbuff_t *)(logbuffer_base ()) - 1;
+ log = (logbuff_t *)(gd->bd->bi_memsize-LOGBUFF_LEN) - 1;
lbuf = (char *)log->buf;
#endif