| Submitter | Mike Frysinger |
|---|---|
| Date | April 3, 2011, 8:58 a.m. |
| Message ID | <1301821121-26743-20-git-send-email-vapier@gentoo.org> |
| Download | mbox | patch |
| Permalink | /patch/89487/ |
| State | Accepted |
| Delegated to: | Wolfgang Denk |
| Headers | show |
Comments
Patch
diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c index 47d487f..362b8c4 100644 --- a/arch/blackfin/lib/board.c +++ b/arch/blackfin/lib/board.c @@ -390,7 +390,7 @@ void board_init_r(gd_t * id, ulong dest_addr) post_run(NULL, POST_RAM | post_bootmode_get(0)); #endif - if (bfin_os_log_check()) { + if (CONFIG_MEM_SIZE && bfin_os_log_check()) { puts("\nLog buffer from operating system:\n"); bfin_os_log_dump(); puts("\n");
If the part has no external memory configured, then there will be no os log for us to check, and any attempt to access that memory will trigger hardware errors. Signed-off-by: Mike Frysinger <vapier@gentoo.org> --- arch/blackfin/lib/board.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)