summaryrefslogtreecommitdiffstats
path: root/board/hymod
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-07-30 13:33:49 +0000
committerWolfgang Denk <wd@denx.de>2011-08-01 15:19:40 +0200
commite6a857da746d5d7d450e59c0f86664c6b279b1c2 (patch)
treed95cae5bc677061c4313f7405545e837d67b02ee /board/hymod
parentf6c019c45440c61734a6ea02d27895820fbba31e (diff)
downloadblackbird-obmc-uboot-e6a857da746d5d7d450e59c0f86664c6b279b1c2.tar.gz
blackbird-obmc-uboot-e6a857da746d5d7d450e59c0f86664c6b279b1c2.zip
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 <wd@denx.de> Cc: Andre Schwarz <andre.schwarz@matrix-vision.de> Cc: Murray Jensen <Murray.Jensen@csiro.au> Acked-by: Andre Schwarz<andre.schwarz@matrix-vision.de>
Diffstat (limited to 'board/hymod')
-rw-r--r--board/hymod/bsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/hymod/bsp.c b/board/hymod/bsp.c
index 9a929413bd..2cd3707d72 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)
OpenPOWER on IntegriCloud