diff options
| author | Heiko Schocher <hs@pollux.denx.de> | 2007-07-13 09:54:17 +0200 | 
|---|---|---|
| committer | Heiko Schocher <hs@pollux.denx.de> | 2007-07-13 09:54:17 +0200 | 
| commit | fad63407154f46246ce80d53a9c669a44362ac67 (patch) | |
| tree | 34eb81390734469bc9c2210f704beab5d66d85c0 /include/common.h | |
| parent | 907902472391b6ca1876ec300687562ecaf459b1 (diff) | |
| download | olio-uboot-2014.01-fad63407154f46246ce80d53a9c669a44362ac67.tar.xz olio-uboot-2014.01-fad63407154f46246ce80d53a9c669a44362ac67.zip | |
make show_boot_progress () weak.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/include/common.h b/include/common.h index d8b6b469e..23f93907e 100644 --- a/include/common.h +++ b/include/common.h @@ -626,9 +626,13 @@ int	fgetc(int file);  int	pcmcia_init (void); -#ifdef CONFIG_SHOW_BOOT_PROGRESS -void	show_boot_progress (int status); +#ifdef CONFIG_STATUS_LED +# include <status_led.h>  #endif +/* + * Board-specific Platform code can reimplement show_boot_progress () if needed + */ +void inline show_boot_progress (int val);  #ifdef CONFIG_INIT_CRITICAL  #error CONFIG_INIT_CRITICAL is deprecated! |