diff options
author | wdenk <wdenk> | 2004-03-13 23:29:43 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-03-13 23:29:43 +0000 |
commit | c40b29568232761e33400e58be86b15a167d3422 (patch) | |
tree | c306e01e8cf535467fb448499304020d251a763a /board | |
parent | 6629d2f22b4af180dc41defe2396bafcd8fe4093 (diff) | |
download | u-boot-imx-c40b29568232761e33400e58be86b15a167d3422.zip u-boot-imx-c40b29568232761e33400e58be86b15a167d3422.tar.gz u-boot-imx-c40b29568232761e33400e58be86b15a167d3422.tar.bz2 |
* Patch by Rune Torgersen, 27 Feb 2004:
- Added LBA48 support (CONFIG_LBA48 & CFG_64BIT_LBA)
- Added support for 64bit printing in vsprintf (CFG_64BIT_VSPRINTF)
- Added support for 64bit strtoul (CFG_64BIT_STRTOUL)
* Patch by Masami Komiya, 27 Feb 2004:
Fix rarpboot: add autoload by NFS
* Patch by Dan Eisenhut, 26 Feb 2004:
fix flash_write return value in saveenv
* Patch by Stephan Linz, 11 Dec 2003
expand config.mk to avoid trigraph warnings on NIOS
* Rename "BMS2003" board into "HMI10"
Diffstat (limited to 'board')
-rw-r--r-- | board/tqm8xx/tqm8xx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/tqm8xx/tqm8xx.c b/board/tqm8xx/tqm8xx.c index 9e9cbd3..b90f5e7 100644 --- a/board/tqm8xx/tqm8xx.c +++ b/board/tqm8xx/tqm8xx.c @@ -425,7 +425,7 @@ static long int dram_size (long int mamr_value, long int *base, long int maxsize #ifdef CONFIG_PS2MULT -#ifdef CONFIG_BMS2003 +#ifdef CONFIG_HMI10 #define BASE_BAUD ( 1843200 / 16 ) struct serial_state rs_table[] = { { BASE_BAUD, 4, (void*)0xec140000 }, @@ -441,12 +441,12 @@ int board_early_init_r (void) return (0); } #endif -#endif /* CONFIG_BMS2003 */ +#endif /* CONFIG_HMI10 */ #endif /* CONFIG_PS2MULT */ /* ------------------------------------------------------------------------- */ -#ifdef CONFIG_BMS2003 +#ifdef CONFIG_HMI10 int misc_init_r (void) { @@ -476,5 +476,5 @@ void ide_led (uchar led, uchar status) } #endif -#endif /* CONFIG_BMS2003 */ +#endif /* CONFIG_HMI10 */ /* ------------------------------------------------------------------------- */ |