]> 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 d4baea930af8a058538369a529696b62320096e4..1d44a6456568723d93a7a7354c3e3520ca301213 100644 (file)
@@ -44,6 +44,12 @@ extern int interrupts_init (void);
 #if defined(CONFIG_CMD_NET)
 extern int eth_init (bd_t * bis);
 #endif
+#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
@@ -67,6 +73,12 @@ init_fnc_t *init_sequence[] = {
 #endif
 #ifdef CONFIG_SYS_INTC_0
        interrupts_init,
+#endif
+#ifdef CONFIG_SYS_TIMER_0
+       timer_init,
+#endif
+#ifdef CONFIG_SYS_FSL_2
+       fsl_init2,
 #endif
        NULL,
 };