]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/board_f.c
net: cosmetic: Change IPaddr_t to struct in_addr
[karo-tx-uboot.git] / common / board_f.c
index cca854d4b1aebba2e9df970c35ec53d9fee03603..d413b8dad7b5c74ed8c0f9f9c006b82c58e10ca1 100644 (file)
@@ -23,6 +23,7 @@
 #include <i2c.h>
 #include <initcall.h>
 #include <logbuff.h>
+#include <mapmem.h>
 
 /* TODO: Can we move these into arch/ headers? */
 #ifdef CONFIG_8xx
@@ -830,6 +831,11 @@ __weak int reserve_arch(void)
        return 0;
 }
 
+__weak int arch_cpu_init_dm(void)
+{
+       return 0;
+}
+
 static init_fnc_t init_sequence_f[] = {
 #ifdef CONFIG_SANDBOX
        setup_ram_buf,
@@ -850,6 +856,7 @@ static init_fnc_t init_sequence_f[] = {
        fdtdec_check_fdt,
 #endif
        initf_dm,
+       arch_cpu_init_dm,
 #if defined(CONFIG_BOARD_EARLY_INIT_F)
        board_early_init_f,
 #endif