]> git.sur5r.net Git - u-boot/blobdiff - board/linkstation/linkstation.c
cmd_mmc remove \n
[u-boot] / board / linkstation / linkstation.c
index f6bc0a958da9812ad4250028a89edfb9f1779144..c0d43eb332882857d7ce22b5a08f06358112ab8a 100644 (file)
@@ -26,6 +26,7 @@
 #include <mpc824x.h>
 #include <asm/io.h>
 #include <ns16550.h>
+#include <netdev.h>
 
 #ifdef CONFIG_PCI
 #include <pci.h>
@@ -50,9 +51,9 @@ int checkboard (void)
        return 0;
 }
 
-long int initdram (int board_type)
+phys_size_t initdram (int board_type)
 {
-       return (get_ram_size(CFG_SDRAM_BASE, CFG_MAX_RAM_SIZE));
+       return (get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MAX_RAM_SIZE));
 }
 
 /*
@@ -128,3 +129,8 @@ int board_early_init_f (void)
        out_8((volatile u8*)UART_DCR, 1);
        return 0;
 }
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}