summaryrefslogtreecommitdiff
path: root/common/fdt_support.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/fdt_support.c')
-rw-r--r--common/fdt_support.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/common/fdt_support.c b/common/fdt_support.c
index ec04a63..259bd42 100644
--- a/common/fdt_support.c
+++ b/common/fdt_support.c
@@ -32,10 +32,6 @@
#include <libfdt.h>
#include <fdt_support.h>
-#ifdef CONFIG_OF_BOARD_SETUP
-void ft_board_setup(void *blob, bd_t *bd);
-#endif
-
/*
* Global data (for the gd->bd)
*/
@@ -62,17 +58,6 @@ int fdt_chosen(void *fdt, ulong initrd_start, ulong initrd_end, int force)
return err;
}
-#ifdef CONFIG_OF_BOARD_SETUP
- /*
- * ft_board_setup() sets various board-specific properties to
- * the proper values.
- *
- * STRICTLY SPEAKING, this is out of place, but it isn't clear
- * where a better place would be.
- */
- ft_board_setup(fdt, bd);
-#endif
-
if (initrd_start && initrd_end) {
struct fdt_reserve_entry re;
int used;