From 5fa66df63afe2841ce27596996811469903373a7 Mon Sep 17 00:00:00 2001 From: wdenk Date: Wed, 29 Oct 2003 23:18:55 +0000 Subject: * Prepare for release * Fix problems in memory test on some boards (which was not non-destructive as intended) * Patch by Gary Jennejohn, 28 Oct 2003: Change fs/fat/fat.c to put I/O buffers in BSS instead on the stack to prevent stack overflow on ARM systems --- lib_arm/board.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib_arm') diff --git a/lib_arm/board.c b/lib_arm/board.c index f3f831f..a6029b0 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -111,9 +111,9 @@ static int init_baudrate (void) static int display_banner (void) { +#ifdef CONFIG_SILENT_CONSOLE DECLARE_GLOBAL_DATA_PTR; -#ifdef CONFIG_SILENT_CONSOLE if (gd->flags & GD_FLG_SILENT) return (0); #endif @@ -161,9 +161,9 @@ static int display_dram_config (void) static void display_flash_config (ulong size) { +#ifdef CONFIG_SILENT_CONSOLE DECLARE_GLOBAL_DATA_PTR; -#ifdef CONFIG_SILENT_CONSOLE if (gd->flags & GD_FLG_SILENT) return; #endif -- cgit v1.1