]> git.sur5r.net Git - u-boot/blobdiff - board/adder/adder.c
8xx : Add OF support to Adder875 board port - resubmit
[u-boot] / board / adder / adder.c
index aa7815848c8e8085b4fe589bee31e1036d75fb9f..817c8649aa630cdc5e9ca1d985a93415682c1334 100644 (file)
@@ -26,6 +26,9 @@
 
 #include <common.h>
 #include <mpc8xx.h>
+#if defined(CONFIG_OF_LIBFDT)
+       #include <libfdt.h>
+#endif
 
 /*
  * SDRAM is single Samsung K4S643232F-T70   chip (8MB)
@@ -111,3 +114,11 @@ int checkboard( void )
 
        return 0;
 }
+
+#if defined(CONFIG_OF_BOARD_SETUP)
+void ft_board_setup(void *blob, bd_t *bd)
+{
+       ft_cpu_setup(blob, bd);
+
+}
+#endif