diff --git a/common/board_f.c b/common/board_f.c
index a2be57756a1e5c735935aa6df3fb857b7b548f82..fe75656b702209fc5448c3a327f7696c39f096c4 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -764,9 +764,6 @@ static init_fnc_t init_sequence_f[] = {
 #ifdef CONFIG_OF_CONTROL
 	fdtdec_setup,
 #endif
-#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
-	x86_fsp_init,
-#endif
 #ifdef CONFIG_TRACE
 	trace_early_init,
 #endif
@@ -774,6 +771,9 @@ static init_fnc_t init_sequence_f[] = {
 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
 	/* TODO: can this go into arch_cpu_init()? */
 	probecpu,
+#endif
+#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
+	x86_fsp_init,
 #endif
 	arch_cpu_init,		/* basic arch cpu dependent setup */
 	mark_bootstage,