aboutsummaryrefslogtreecommitdiff
path: root/include/spartan3.h
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 /include/spartan3.h
parentf6c019c45440c61734a6ea02d27895820fbba31e (diff)
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 'include/spartan3.h')
-rw-r--r--include/spartan3.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/spartan3.h b/include/spartan3.h
index 0f0b40085..67ede4b1d 100644
--- a/include/spartan3.h
+++ b/include/spartan3.h
@@ -27,9 +27,9 @@
#include <xilinx.h>
-extern int Spartan3_load( Xilinx_desc *desc, void *image, size_t size );
-extern int Spartan3_dump( Xilinx_desc *desc, void *buf, size_t bsize );
-extern int Spartan3_info( Xilinx_desc *desc );
+extern int Spartan3_load(Xilinx_desc *desc, const void *image, size_t size);
+extern int Spartan3_dump(Xilinx_desc *desc, const void *buf, size_t bsize);
+extern int Spartan3_info(Xilinx_desc *desc);
/* Slave Parallel Implementation function table */
typedef struct {