diff options
| author | Ben Warren <bwarren@qstreams.com> | 2007-08-13 21:26:03 -0400 | 
|---|---|---|
| committer | Ben Warren <bwarren@qstreams.com> | 2007-08-13 21:26:03 -0400 | 
| commit | d1bc6c8d5f4a9c7ca9fb2292d5c65f846dcc3995 (patch) | |
| tree | dd0722cee4758fe40f6a5cc75986ebb1a395aac2 /common/env_common.c | |
| parent | f539edc076cfe52bff919dd512ba8d7af0e22092 (diff) | |
| parent | 8a92b7c60b40ff79e2cc96e13aeac2a531dde473 (diff) | |
| download | olio-uboot-2014.01-d1bc6c8d5f4a9c7ca9fb2292d5c65f846dcc3995.tar.xz olio-uboot-2014.01-d1bc6c8d5f4a9c7ca9fb2292d5c65f846dcc3995.zip  | |
Sync'd u-boot-net with mainline
Merge git://www.denx.de/git/u-boot
Conflicts:
	drivers/bcm570x.c
	drivers/tigon3.c
Diffstat (limited to 'common/env_common.c')
| -rw-r--r-- | common/env_common.c | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/common/env_common.c b/common/env_common.c index eb33422af..a49481244 100644 --- a/common/env_common.c +++ b/common/env_common.c @@ -30,13 +30,6 @@  #include <linux/stddef.h>  #include <malloc.h> -#ifdef CONFIG_SHOW_BOOT_PROGRESS -# include <status_led.h> -# define SHOW_BOOT_PROGRESS(arg)	show_boot_progress(arg) -#else -# define SHOW_BOOT_PROGRESS(arg) -#endif -  DECLARE_GLOBAL_DATA_PTR;  #ifdef CONFIG_AMIGAONEG3SE @@ -232,7 +225,7 @@ void env_relocate (void)  		puts ("Using default environment\n\n");  #else  		puts ("*** Warning - bad CRC, using default environment\n\n"); -		SHOW_BOOT_PROGRESS (-1); +		show_boot_progress (-60);  #endif  		if (sizeof(default_environment) > ENV_SIZE)  |