aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2008-04-19 17:59:20 +0200
committerWolfgang Denk <wd@denx.de>2008-04-24 23:22:52 +0200
commit2ef1d9b6030d02f576b1bcd9fec948e602522012 (patch)
treedc5f8dd21bc72554a4aa5a3f8f2cdc23cf15b4d1
parentedbed247a14d70b94958010f736621212285de91 (diff)
Fix show_boot_progress prototype
in commit fad634071 "make show_boot_progress () weak." show_boot_progress is supposed to be declared as weak but declared as inline instead. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r--include/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 11b7d31c4..fa1d0528e 100644
--- a/include/common.h
+++ b/include/common.h
@@ -661,7 +661,7 @@ int pcmcia_init (void);
/*
* Board-specific Platform code can reimplement show_boot_progress () if needed
*/
-void inline show_boot_progress (int val);
+void __attribute__((weak)) show_boot_progress (int val);
#ifdef CONFIG_INIT_CRITICAL
#error CONFIG_INIT_CRITICAL is deprecated!