X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=board%2Fa3000%2Fa3000.c;h=ce2cf28e3c12aae01ae0c66dd013b94ec8df85b6;hb=641483af40915dabdfe7764bb22d7e5103cb636b;hp=737d35d76c522e5dad6f7854d573e9b94ea5776a;hpb=9d2459f3532c009bb903b02b57079a3862420a5f;p=oweals%2Fu-boot.git diff --git a/board/a3000/a3000.c b/board/a3000/a3000.c index 737d35d76c..ce2cf28e3c 100644 --- a/board/a3000/a3000.c +++ b/board/a3000/a3000.c @@ -27,6 +27,7 @@ #include #include #include +#include int checkboard (void) { @@ -38,14 +39,14 @@ int checkboard (void) } -long int initdram (int board_type) +phys_size_t initdram (int board_type) { long size; long new_bank0_end; 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); @@ -109,3 +110,8 @@ void pci_init_board(void) { pci_mpc824x_init(&hose); } + +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +}