[U-Boot-Users] [PATCH 1/1] Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type

Jean-Christophe PLAGNIOL-VILLARD plagnioj at jcrosoft.com
Mon Nov 19 21:27:10 CET 2007


Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>

diff --git a/board/esd/canbt/canbt.c b/board/esd/canbt/canbt.c
index 055a397..e0f9c57 100644
--- a/board/esd/canbt/canbt.c
+++ b/board/esd/canbt/canbt.c
@@ -39,7 +39,7 @@ extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
 #endif
 
 /* fpga configuration data */
-const unsigned char fpgadata[] = {
+unsigned char fpgadata[] = {
 #include "fpgadata.c"
 };
 
diff --git a/board/esd/cpci405/cpci405.c b/board/esd/cpci405/cpci405.c
index 69cb8ce..059c48a 100644
--- a/board/esd/cpci405/cpci405.c
+++ b/board/esd/cpci405/cpci405.c
@@ -37,7 +37,7 @@ extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);	/*cmd_
 #endif
 
 /* fpga configuration data - generated by bin2cc */
-const unsigned char fpgadata[] =
+unsigned char fpgadata[] =
 {
 #ifdef CONFIG_CPCI405_VER2
 # ifdef CONFIG_CPCI405AB
diff --git a/board/esd/cpciiser4/cpciiser4.c b/board/esd/cpciiser4/cpciiser4.c
index fcb8cbb..c4f5d09 100644
--- a/board/esd/cpciiser4/cpciiser4.c
+++ b/board/esd/cpciiser4/cpciiser4.c
@@ -45,7 +45,7 @@ extern void lxt971_no_sleep(void);
 #endif
 
 /* fpga configuration data - generated by bin2cc */
-const unsigned char fpgadata[] = {
+unsigned char fpgadata[] = {
 #include "fpgadata.c"
 };
 
diff --git a/board/esd/du405/du405.c b/board/esd/du405/du405.c
index 6943213..9450cda 100644
--- a/board/esd/du405/du405.c
+++ b/board/esd/du405/du405.c
@@ -45,7 +45,7 @@ extern void lxt971_no_sleep(void);
 #endif
 
 /* fpga configuration data - generated by bin2cc */
-const unsigned char fpgadata[] = {
+unsigned char fpgadata[] = {
 #include "fpgadata.c"
 };
 
-- 
1.5.3.2





More information about the U-Boot mailing list