]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/musenki/musenki.c
include/linux/mii.h: update for supporting GE
[karo-tx-uboot.git] / board / musenki / musenki.c
index b2b70e756d4d11aa232c32431fafd2b8af3c2b5c..30b95ce1dbcadb9c1bb2b62ef979343beaad5919 100644 (file)
@@ -24,6 +24,7 @@
 #include <common.h>
 #include <mpc824x.h>
 #include <pci.h>
+#include <netdev.h>
 
 int checkboard (void)
 {
@@ -52,7 +53,7 @@ phys_size_t initdram (int board_type)
        long mear1;
        long emear1;
 
-       size = get_ram_size(CFG_SDRAM_BASE, CFG_MAX_RAM_SIZE);
+       size = get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MAX_RAM_SIZE);
 
        new_bank0_end = size - 1;
        mear1 = mpc824x_mpc107_getreg(MEAR1);
@@ -102,3 +103,8 @@ void pci_init_board(void)
 {
        pci_mpc824x_init(&hose);
 }
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}