]> git.sur5r.net Git - u-boot/blobdiff - arch/microblaze/lib/board.c
microblaze: Move FSL initialization to board.c
[u-boot] / arch / microblaze / lib / board.c
index 7dfa71c0fb8598b397dfe8a7d5799ec568db9154..1d44a6456568723d93a7a7354c3e3520ca301213 100644 (file)
@@ -47,7 +47,9 @@ extern int eth_init (bd_t * bis);
 #ifdef CONFIG_SYS_TIMER_0
 extern int timer_init (void);
 #endif
-
+#ifdef CONFIG_SYS_FSL_2
+extern void fsl_init2 (void);
+#endif
 
 /*
  * All attempts to come up with a "common" initialization sequence
@@ -74,6 +76,9 @@ init_fnc_t *init_sequence[] = {
 #endif
 #ifdef CONFIG_SYS_TIMER_0
        timer_init,
+#endif
+#ifdef CONFIG_SYS_FSL_2
+       fsl_init2,
 #endif
        NULL,
 };