diff options
author | Simon Glass <sjg@chromium.org> | 2014-06-07 22:07:58 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-11 16:27:05 -0400 |
commit | ddc94378db9fe0c9076512768b3576e0fdc580dd (patch) | |
tree | 8b88de08afadcdcc7f723940ce1f2a8c2291860a /board/astro/mcf5373l/fpga.c | |
parent | 34e4a2ec0ad95cea910094e33761bddf56ad7fc0 (diff) | |
download | u-boot-imx-ddc94378db9fe0c9076512768b3576e0fdc580dd.zip u-boot-imx-ddc94378db9fe0c9076512768b3576e0fdc580dd.tar.gz u-boot-imx-ddc94378db9fe0c9076512768b3576e0fdc580dd.tar.bz2 |
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/mcf5373l/fpga.c')
-rw-r--r-- | board/astro/mcf5373l/fpga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/astro/mcf5373l/fpga.c b/board/astro/mcf5373l/fpga.c index 1d044d9..d1110df 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; |