All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] Fix show_boot_progress prototype
@ 2008-04-19 15:59 Jean-Christophe PLAGNIOL-VILLARD
  2008-04-19 16:46 ` [U-Boot-Users] [PATCH] image: remove inline for image_print_contents and image_print_contents_noindent Jean-Christophe PLAGNIOL-VILLARD
  2008-04-25  7:16 ` [U-Boot-Users] [PATCH] Fix show_boot_progress prototype Wolfgang Denk
  0 siblings, 2 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-04-19 15:59 UTC (permalink / raw)
  To: u-boot

in commit fad634071 "make show_boot_progress () weak."
show_boot_progress is supposed to be declared as weak but declare as inline
instead of.

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

diff --git a/include/common.h b/include/common.h
index 8630780..eeb6686 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!
-- 
1.5.4.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-04-25  7:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-19 15:59 [U-Boot-Users] [PATCH] Fix show_boot_progress prototype Jean-Christophe PLAGNIOL-VILLARD
2008-04-19 16:46 ` [U-Boot-Users] [PATCH] image: remove inline for image_print_contents and image_print_contents_noindent Jean-Christophe PLAGNIOL-VILLARD
2008-04-20 23:39   ` Wolfgang Denk
2008-04-21  8:39   ` Bartlomiej Sieka
2008-04-25  7:16 ` [U-Boot-Users] [PATCH] Fix show_boot_progress prototype Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.