diff options
author | Scott Sweeny <scott.sweeny@timesys.com> | 2010-08-30 14:16:36 -0400 |
---|---|---|
committer | Scott Sweeny <scott.sweeny@timesys.com> | 2010-08-30 14:16:36 -0400 |
commit | e1dce181db649aadcf5c83e9459ebf53dd038073 (patch) | |
tree | 48438b545d1b4b70354af4c2e0a5411b20194564 /common/main.c | |
parent | e60beb13cf0135dc71c541021487b5ccc4d269cb (diff) |
no inline and weak attributes
Diffstat (limited to 'common/main.c')
-rw-r--r-- | common/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/main.c b/common/main.c index 905d40f0e09..026edd1db23 100644 --- a/common/main.c +++ b/common/main.c @@ -48,7 +48,7 @@ DECLARE_GLOBAL_DATA_PTR; * 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"))); +void 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 */ |