diff options
author | Marian Balakowicz <m8@semihalf.com> | 2007-11-15 13:24:43 +0100 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2007-11-15 13:24:43 +0100 |
commit | f23cb34c367bb27585a4fdb8a75277370e7d0596 (patch) | |
tree | 26a10f15499e1c1a6a6bafc30d14dc5f838d5159 /board/inka4x0 | |
parent | 992742a5b09d9040adbd156fb90756af66ade310 (diff) | |
download | u-boot-imx-f23cb34c367bb27585a4fdb8a75277370e7d0596.zip u-boot-imx-f23cb34c367bb27585a4fdb8a75277370e7d0596.tar.gz u-boot-imx-f23cb34c367bb27585a4fdb8a75277370e7d0596.tar.bz2 |
[INKA4x0] NG hardware: platform code update
- Cleanup compile warnings.
- Add missing '\0' in default environment.
- Increase CFG_MONITOR_LEN to 256 KiB.
- Add required CFG_USE_PPCENV.
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'board/inka4x0')
-rw-r--r-- | board/inka4x0/inka4x0.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c index 478a331..c80fc3b 100644 --- a/board/inka4x0/inka4x0.c +++ b/board/inka4x0/inka4x0.c @@ -88,7 +88,7 @@ long int initdram (int board_type) { ulong dramsize = 0; #ifndef CFG_RAMBOOT - ulong test1, test2; + long test1, test2; /* setup SDRAM chip selects */ *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001c; /* 512MB at 0x0 */ @@ -108,9 +108,9 @@ long int initdram (int board_type) /* find RAM size using SDRAM CS0 only */ sdram_start(0); - test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x20000000); + test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000); sdram_start(1); - test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x20000000); + test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000); if (test1 > test2) { sdram_start(0); dramsize = test1; @@ -175,7 +175,7 @@ void flash_preinit(void) int misc_init_f (void) { - uchar tmp[10]; + char tmp[10]; int i, br; i = getenv_r("brightness", tmp, sizeof(tmp)); |