All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] common/board_f: make board_init_f_mem() independent on !CONFIG_X86
@ 2015-03-16  8:03 Alexey Brodkin
  2015-03-23 16:40 ` Alexey Brodkin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Brodkin @ 2015-03-16  8:03 UTC (permalink / raw)
  To: u-boot

Even though board_init_f_mem() is not used on x86 today there's no
reason to not use it in the future.

Moreover board_init_f_mem() has nothing to do with any particular
architecture so move it away from #else /* CONFIG_X86 */

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@ti.com>
---
 common/board_f.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/board_f.c b/common/board_f.c
index 731b539..f55550c 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -1079,7 +1079,8 @@ void board_init_f_r(void)
 	/* NOTREACHED - board_init_r() does not return */
 	hang();
 }
-#else
+#endif /* CONFIG_X86 */
+
 ulong board_init_f_mem(ulong top)
 {
 	/* Leave space for the stack we are running with now */
@@ -1097,4 +1098,3 @@ ulong board_init_f_mem(ulong top)
 
 	return top;
 }
-#endif /* CONFIG_X86 */
-- 
2.1.0

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

end of thread, other threads:[~2015-03-23 21:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-16  8:03 [U-Boot] [PATCH] common/board_f: make board_init_f_mem() independent on !CONFIG_X86 Alexey Brodkin
2015-03-23 16:40 ` Alexey Brodkin
2015-03-23 17:26   ` Simon Glass
2015-03-23 21:17     ` Alexey Brodkin
2015-03-23 21:18       ` Simon Glass

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.