summaryrefslogtreecommitdiff
path: root/board/motionpro/motionpro.c
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2007-05-18 11:20:02 +0200
committerStefan Roese <sr@denx.de>2007-05-18 11:20:02 +0200
commitee96088ca59d871ec096aefce04b741d1b02cb30 (patch)
tree6a97720507c4bbd57ec5f6a8faf09e0971e5449d /board/motionpro/motionpro.c
parentada4697d0230d6da552867777f98a67ec3ba2579 (diff)
parent70124c2602ae2d4c5d3dba05b482d91548242de8 (diff)
downloadu-boot-imx-ee96088ca59d871ec096aefce04b741d1b02cb30.zip
u-boot-imx-ee96088ca59d871ec096aefce04b741d1b02cb30.tar.gz
u-boot-imx-ee96088ca59d871ec096aefce04b741d1b02cb30.tar.bz2
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'board/motionpro/motionpro.c')
-rw-r--r--board/motionpro/motionpro.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/board/motionpro/motionpro.c b/board/motionpro/motionpro.c
index d60d233..58985b8 100644
--- a/board/motionpro/motionpro.c
+++ b/board/motionpro/motionpro.c
@@ -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) */