summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@freescale.com>2007-06-20 12:22:52 -0500
committerKim Phillips <kim.phillips@freescale.com>2007-06-20 12:22:52 -0500
commit30d5c04c93084fe0b144646b77eb873957872a8d (patch)
treecf003571ca7078c55f741e38f2be0393cfe307af /board
parentb721ff745d3e5b4fe6bb8db430553d54dba4bd17 (diff)
parent5ffa76a032279bc6d3230b703eda32d13305ba13 (diff)
downloadu-boot-imx-30d5c04c93084fe0b144646b77eb873957872a8d.zip
u-boot-imx-30d5c04c93084fe0b144646b77eb873957872a8d.tar.gz
u-boot-imx-30d5c04c93084fe0b144646b77eb873957872a8d.tar.bz2
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'board')
-rw-r--r--board/tqm5200/tqm5200.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/board/tqm5200/tqm5200.c b/board/tqm5200/tqm5200.c
index a4322b6..cf97603 100644
--- a/board/tqm5200/tqm5200.c
+++ b/board/tqm5200/tqm5200.c
@@ -32,6 +32,10 @@
#include <pci.h>
#include <asm/processor.h>
+#if defined(CONFIG_OF_FLAT_TREE)
+#include <ft_build.h>
+#endif
+
#ifdef CONFIG_VIDEO_SM501
#include <sm501.h>
#endif
@@ -775,3 +779,10 @@ int board_get_height (void)
}
#endif /* CONFIG_VIDEO_SM501 */
+
+#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) */