summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/board_f.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/board_f.c b/common/board_f.c
index 55ede07537..e537cd1ff8 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -1080,7 +1080,9 @@ void board_init_f_r(void)
/* NOTREACHED - board_init_r() does not return */
hang();
}
-#else
+#endif /* CONFIG_X86 */
+
+#ifndef CONFIG_X86
ulong board_init_f_mem(ulong top)
{
/* Leave space for the stack we are running with now */
@@ -1098,4 +1100,4 @@ ulong board_init_f_mem(ulong top)
return top;
}
-#endif /* CONFIG_X86 */
+#endif /* !CONFIG_X86 */
OpenPOWER on IntegriCloud