From e6a857da746d5d7d450e59c0f86664c6b279b1c2 Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Sat, 30 Jul 2011 13:33:49 +0000 Subject: fpga: constify to fix build warning Fix compiler warning: cmd_fpga.c:318: warning: passing argument 3 of 'fit_image_get_data' from incompatible pointer type Adding the needed 'const' here entails a whole bunch of additonal changes all over the FPGA code. Signed-off-by: Wolfgang Denk Cc: Andre Schwarz Cc: Murray Jensen Acked-by: Andre Schwarz --- board/hymod/bsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'board/hymod') diff --git a/board/hymod/bsp.c b/board/hymod/bsp.c index 9a929413bd0..2cd3707d72c 100644 --- a/board/hymod/bsp.c +++ b/board/hymod/bsp.c @@ -75,14 +75,14 @@ DECLARE_GLOBAL_DATA_PTR; */ int -fpga_load (int mezz, uchar *addr, ulong size) +fpga_load(int mezz, const uchar *addr, ulong size) { hymod_conf_t *cp = &gd->bd->bi_hymod_conf; xlx_info_t *fp; xlx_iopins_t *fpgaio; volatile uchar *fpgabase; volatile uint cnt; - uchar *eaddr = addr + size; + const uchar *eaddr = addr + size; int result; if (mezz) -- cgit v1.2.3