diff options
author | Simon Glass | 2014-06-07 22:07:58 -0600 |
---|---|---|
committer | Tom Rini | 2014-06-11 16:27:05 -0400 |
commit | ddc94378db9fe0c9076512768b3576e0fdc580dd (patch) | |
tree | 8b88de08afadcdcc7f723940ce1f2a8c2291860a /board/astro | |
parent | 34e4a2ec0ad95cea910094e33761bddf56ad7fc0 (diff) |
m68k: Fix warnings with gcc 4.6
Most of the warnings seem to be related to using 'int' for size_t. Change
this and fix up the remaining warnings and problems. For bootm, the warning
was masked by others, and there is an actual bug in the code.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/astro')
-rw-r--r-- | board/astro/mcf5373l/fpga.c | 2 | ||||
-rw-r--r-- | board/astro/mcf5373l/mcf5373l.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/astro/mcf5373l/fpga.c b/board/astro/mcf5373l/fpga.c index 1d044d96a56..d1110dfd6e7 100644 --- a/board/astro/mcf5373l/fpga.c +++ b/board/astro/mcf5373l/fpga.c @@ -100,7 +100,7 @@ int altera_done_fn(int cookie) * writing the complete buffer in one function is much faster, * then calling it for every bit */ -int altera_write_fn(void *buf, size_t len, int flush, int cookie) +int altera_write_fn(const void *buf, size_t len, int flush, int cookie) { size_t bytecount = 0; gpio_t *gpiop = (gpio_t *)MMAP_GPIO; diff --git a/board/astro/mcf5373l/mcf5373l.c b/board/astro/mcf5373l/mcf5373l.c index daba32c9dc1..7ec7cb378f5 100644 --- a/board/astro/mcf5373l/mcf5373l.c +++ b/board/astro/mcf5373l/mcf5373l.c @@ -79,7 +79,7 @@ phys_size_t initdram(int board_type) * (Do not rely on the SDCS register(s) being set to 0x00000000 * during reset as stated in the data sheet.) */ - return get_ram_size((unsigned long *)CONFIG_SYS_SDRAM_BASE, + return get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, 0x80000000 - CONFIG_SYS_SDRAM_BASE); } |