diff options
| author | Wolfgang Denk <wd@denx.de> | 2011-08-05 02:26:31 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-09-05 11:41:42 +0200 | 
| commit | fb2d6efbf298db3660a2130074b8b20a0ff26efd (patch) | |
| tree | 65842ed84676e493176e22e0e4017d2059181bc7 | |
| parent | f0e494988f988f29a47cb25b548c9acbbfe2fbc1 (diff) | |
| download | olio-uboot-2014.01-fb2d6efbf298db3660a2130074b8b20a0ff26efd.tar.xz olio-uboot-2014.01-fb2d6efbf298db3660a2130074b8b20a0ff26efd.zip | |
FPGA: constify Lattice FPGA code
The Lattice code was missed by commit e6a857d "fpga: constify to fix
build warning" resulting in such warnings:
fpga.c: In function 'fpga_load':
fpga.c:238: warning: passing argument 2 of 'lattice_load' discards qualifiers from pointer target type
fpga.c: In function 'fpga_dump':
fpga.c:278: warning: passing argument 2 of 'lattice_dump' discards qualifiers from pointer target type
Signed-off-by: Wolfgang Denk <wd@denx.de>
cc: Stefano Babic <sbabic@denx.de>
| -rw-r--r-- | drivers/fpga/lattice.c | 6 | ||||
| -rwxr-xr-x | include/lattice.h | 4 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/drivers/fpga/lattice.c b/drivers/fpga/lattice.c index c3b2355f9..50d9e542d 100644 --- a/drivers/fpga/lattice.c +++ b/drivers/fpga/lattice.c @@ -34,7 +34,7 @@  #include <lattice.h>  static lattice_board_specific_func *pfns; -static char *fpga_image; +static const char *fpga_image;  static unsigned long read_bytes;  static unsigned long bufsize;  static unsigned short expectedCRC; @@ -302,7 +302,7 @@ static int lattice_validate(Lattice_desc *desc, const char *fn)  	return ret_val;  } -int lattice_load(Lattice_desc *desc, void *buf, size_t bsize) +int lattice_load(Lattice_desc *desc, const void *buf, size_t bsize)  {  	int ret_val = FPGA_FAIL; @@ -335,7 +335,7 @@ int lattice_load(Lattice_desc *desc, void *buf, size_t bsize)  	return ret_val;  } -int lattice_dump(Lattice_desc *desc, void *buf, size_t bsize) +int lattice_dump(Lattice_desc *desc, const void *buf, size_t bsize)  {  	puts("Dump not supported for Lattice FPGA\n"); diff --git a/include/lattice.h b/include/lattice.h index e96566357..6a2cf93db 100755 --- a/include/lattice.h +++ b/include/lattice.h @@ -302,8 +302,8 @@ void sclock(void);  void ispVMDelay(unsigned short int a_usMicroSecondDelay);  void calibration(void); -int lattice_load(Lattice_desc *desc, void *buf, size_t bsize); -int lattice_dump(Lattice_desc *desc, void *buf, size_t bsize); +int lattice_load(Lattice_desc *desc, const void *buf, size_t bsize); +int lattice_dump(Lattice_desc *desc, const void *buf, size_t bsize);  int lattice_info(Lattice_desc *desc);  void ispVMStart(void); |