diff options
| author | Wolfgang Denk <wd@denx.de> | 2011-07-30 13:33:49 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-08-01 15:19:40 +0200 | 
| commit | e6a857da746d5d7d450e59c0f86664c6b279b1c2 (patch) | |
| tree | d95cae5bc677061c4313f7405545e837d67b02ee /drivers/fpga/xilinx.c | |
| parent | f6c019c45440c61734a6ea02d27895820fbba31e (diff) | |
| download | olio-uboot-2014.01-e6a857da746d5d7d450e59c0f86664c6b279b1c2.tar.xz olio-uboot-2014.01-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 'drivers/fpga/xilinx.c')
| -rw-r--r-- | drivers/fpga/xilinx.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/fpga/xilinx.c b/drivers/fpga/xilinx.c index 08dfdecde..4072cb414 100644 --- a/drivers/fpga/xilinx.c +++ b/drivers/fpga/xilinx.c @@ -48,7 +48,7 @@ static int xilinx_validate (Xilinx_desc * desc, char *fn);  /* ------------------------------------------------------------------------- */ -int xilinx_load (Xilinx_desc * desc, void *buf, size_t bsize) +int xilinx_load(Xilinx_desc *desc, const void *buf, size_t bsize)  {  	int ret_val = FPGA_FAIL;	/* assume a failure */ @@ -95,7 +95,7 @@ int xilinx_load (Xilinx_desc * desc, void *buf, size_t bsize)  	return ret_val;  } -int xilinx_dump (Xilinx_desc * desc, void *buf, size_t bsize) +int xilinx_dump(Xilinx_desc *desc, const void *buf, size_t bsize)  {  	int ret_val = FPGA_FAIL;	/* assume a failure */ |