]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/mousse/mousse.c
rename CFG_ macros to CONFIG_SYS
[karo-tx-uboot.git] / board / mousse / mousse.c
index 7208a17c1a6ab86479c1193aea5383609c080920..6a12b576e0a14364d6f4865adc44ebc12a61ab93 100644 (file)
@@ -28,6 +28,7 @@
 
 #include <common.h>
 #include <mpc824x.h>
+#include <netdev.h>
 #include <asm/processor.h>
 
 #include "mousse.h"
@@ -55,9 +56,9 @@ int checkflash (void)
        return 0;
 }
 
-long int initdram (int board_type)
+phys_size_t initdram (int board_type)
 {
-       return CFG_RAM_SIZE;
+       return CONFIG_SYS_RAM_SIZE;
 }
 
 
@@ -84,3 +85,8 @@ int misc_init_f (void)
        get_tod ();
        return 0;
 }
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}