diff options
author | Michal Simek <monstr@monstr.eu> | 2007-08-05 16:46:23 +0200 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2007-08-05 16:46:23 +0200 |
commit | 45b3fd28152ed8c52f2dad06a422ac6e95cd48fd (patch) | |
tree | acfdf13b17246d2225db904112345ab1db2099cc /common/main.c | |
parent | af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f (diff) | |
parent | b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86 (diff) | |
download | u-boot-imx-45b3fd28152ed8c52f2dad06a422ac6e95cd48fd.zip u-boot-imx-45b3fd28152ed8c52f2dad06a422ac6e95cd48fd.tar.gz u-boot-imx-45b3fd28152ed8c52f2dad06a422ac6e95cd48fd.tar.bz2 |
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'common/main.c')
-rw-r--r-- | common/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/main.c b/common/main.c index a00ebc1..000686d 100644 --- a/common/main.c +++ b/common/main.c @@ -44,6 +44,12 @@ DECLARE_GLOBAL_DATA_PTR; #endif +/* + * Board-specific Platform code can reimplement show_boot_progress () if needed + */ +void inline __show_boot_progress (int val) {} +void inline show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress"))); + #if defined(CONFIG_BOOT_RETRY_TIME) && defined(CONFIG_RESET_TO_RETRY) extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); /* for do_reset() prototype */ #endif |