diff options
author | wdenk <wdenk> | 2003-03-06 00:58:30 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-03-06 00:58:30 +0000 |
commit | db2f721ffcf9693086a7e5c6c7015f2019e7f52e (patch) | |
tree | 1d755e28c035c1247f30b570ed239a097a7d13c8 /board/ebony/ebony.c | |
parent | 43d9616cffb4a130e1620e3e33fc9bc1bcabe399 (diff) | |
download | u-boot-imx-db2f721ffcf9693086a7e5c6c7015f2019e7f52e.zip u-boot-imx-db2f721ffcf9693086a7e5c6c7015f2019e7f52e.tar.gz u-boot-imx-db2f721ffcf9693086a7e5c6c7015f2019e7f52e.tar.bz2 |
* Patch by Rune Torgersen, 13 Feb 2003:
Add support for Motorola MPC8266ADS board
* Patch by Kyle Harris, 19 Feb 2003:
patches for the Intel lubbock board:
memsetup.S - general cleanup (based on Robert's csb226 code)
flash.c - overhaul, actually works now
lubbock.c - fix init funcs to return proper value
* Patch by Kenneth Johansson, 26 Feb 2003:
- Fixed off by one in RFTA calculation.
- No need to abort when LDF is lower than we can program it's only
minimum timing so clamp it to what we can do.
- Takes function pointer to function for reading the spd_nvram. Usefull
for faking data or hardcode a module without the nvram.
- fix other user for above change
- fix some comments.
* Patches by Brian Waite, 26 Feb 2003:
- fix port for evb64260 board
- fix PCI for evb64260 board
- fix PCI scan
* Patch by Reinhard Meyer, 1 Mar 2003:
Add support for EMK TOP860 Module
* Patch by Yuli Barcohen, 02 Mar 2003:
Add SPD EEPROM support for MPC8260ADS board
Diffstat (limited to 'board/ebony/ebony.c')
-rw-r--r-- | board/ebony/ebony.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/board/ebony/ebony.c b/board/ebony/ebony.c index 723fad3..b36d542 100644 --- a/board/ebony/ebony.c +++ b/board/ebony/ebony.c @@ -21,11 +21,10 @@ */ -extern long int spd_sdram (void); - #include <common.h> #include "ebony.h" #include <asm/processor.h> +#include <spd_sdram.h> #define BOOT_SMALL_FLASH 32 /* 00100000 */ #define FLASH_ONBD_N 2 /* 00000010 */ @@ -113,10 +112,9 @@ int checkboard (void) long int initdram (int board_type) { long dram_size = 0; - extern long spd_sdram (void); #if defined(CONFIG_SPD_EEPROM) - dram_size = spd_sdram (); + dram_size = spd_sdram (0); #else dram_size = fixed_sdram (); #endif |