summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2007-05-15 00:23:53 +0200
committerWolfgang Denk <wd@denx.de>2007-05-15 00:23:53 +0200
commite73865897fe9e2b111d7f9ef32fe428438771b11 (patch)
tree43416206dbc28a9e6ec7faa2a89b42aad44adcff /board
parentabca901869c3760b6c5fecb825db6c1d91a78a93 (diff)
parentf0da1d1b3c0719ea3b6025fe87b66224a466100d (diff)
downloadu-boot-imx-e73865897fe9e2b111d7f9ef32fe428438771b11.zip
u-boot-imx-e73865897fe9e2b111d7f9ef32fe428438771b11.tar.gz
u-boot-imx-e73865897fe9e2b111d7f9ef32fe428438771b11.tar.bz2
Merge with /home/wd/git/u-boot/master
Diffstat (limited to 'board')
-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) */