]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/motionpro/motionpro.c
Merge with /home/tur/git/u-boot#motionpro
[people/ms/u-boot.git] / board / motionpro / motionpro.c
index d60d23332b178b9285d50e7a7b9ff0bd3a6edd41..58985b81147b8ca53e72482184afa1bb367394b7 100644 (file)
@@ -29,6 +29,9 @@
 #include <common.h>
 #include <mpc5xxx.h>
 
+#if defined(CONFIG_OF_FLAT_TREE)
+#include <ft_build.h>
+#endif
 
 /* Kollmorgen DPR initialization data */
 struct init_elem {
@@ -170,3 +173,11 @@ int checkboard (void)
        puts("Board: Promess Motion-PRO board\n");
        return 0;
 }
+
+
+#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP)
+void ft_board_setup(void *blob, bd_t *bd)
+{
+       ft_cpu_setup(blob, bd);
+}
+#endif /* defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP) */