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/fpga.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/fpga.c')
| -rw-r--r-- | drivers/fpga/fpga.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/fpga/fpga.c b/drivers/fpga/fpga.c index a6690398a..26d244354 100644 --- a/drivers/fpga/fpga.c +++ b/drivers/fpga/fpga.c @@ -52,7 +52,7 @@ static fpga_desc desc_table[CONFIG_MAX_FPGA_DEVICES];  /* Local static functions */  static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_get_desc( int devnum ); -static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_validate( int devnum, void *buf, +static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_validate(int devnum, const void *buf,  					 size_t bsize, char *fn );  static int fpga_dev_info( int devnum ); @@ -94,7 +94,7 @@ static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_ge  /* fpga_validate   *	generic parameter checking code   */ -static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_validate( int devnum, void *buf, +static __attribute__((__const__)) fpga_desc * __attribute__((__const__)) fpga_validate(int devnum, const void *buf,  					 size_t bsize, char *fn )  {  	fpga_desc * desc = fpga_get_desc( devnum ); @@ -212,7 +212,7 @@ int fpga_add( fpga_type devtype, void *desc )  /*   *	Generic multiplexing code   */ -int fpga_load( int devnum, void *buf, size_t bsize ) +int fpga_load(int devnum, const void *buf, size_t bsize)  {  	int ret_val = FPGA_FAIL;           /* assume failure */  	fpga_desc * desc = fpga_validate( devnum, buf, bsize, (char *)__FUNCTION__ ); @@ -252,7 +252,7 @@ int fpga_load( int devnum, void *buf, size_t bsize )  /* fpga_dump   *	generic multiplexing code   */ -int fpga_dump( int devnum, void *buf, size_t bsize ) +int fpga_dump(int devnum, const void *buf, size_t bsize)  {  	int ret_val = FPGA_FAIL;           /* assume failure */  	fpga_desc * desc = fpga_validate( devnum, buf, bsize, (char *)__FUNCTION__ ); |