diff options
Diffstat (limited to 'board/hymod/bsp.c')
| -rw-r--r-- | board/hymod/bsp.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/hymod/bsp.c b/board/hymod/bsp.c index 9a929413b..2cd3707d7 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) |