[U-Boot-Users] [PATCH] suppress const casting warning in common/fpga.c

suppress some compiler warnings regarding const implicit conversion removed dead code
Signed-off-by: Eran Liberty eran.liberty@gmail.com
Index: common/fpga.c =================================================================== --- common/fpga.c (.../tags/trunk/20070620_2_merge_to_exsw6000) (revision 69) +++ common/fpga.c (.../branches/exsw6000) (revision 69) @@ -64,7 +64,7 @@ /* fpga_no_sup * 'no support' message function */ -static void fpga_no_sup( char *fn, char *msg ) +static void fpga_no_sup (const char *fn, const char *msg) { if ( fn && msg ) { printf( "%s: No support for %s. CONFIG_FPGA defined as 0x%x.\n", @@ -207,10 +207,6 @@ memset( desc_table, 0, sizeof(desc_table));
PRINTF( "%s: CONFIG_FPGA = 0x%x\n", __FUNCTION__, CONFIG_FPGA ); -#if 0 - PRINTF( "%s: CFG_FPGA_XILINX = 0x%x\n", __FUNCTION__, CFG_FPGA_XILINX ); - PRINTF( "%s: CFG_FPGA_ALTERA = 0x%x\n", __FUNCTION__, CFG_FPGA_ALTERA ); -#endif }
/* fpga_count

On 7/3/07, eran.liberty@gmail.com eran.liberty@gmail.com wrote:
suppress some compiler warnings regarding const implicit conversion removed dead code
Signed-off-by: Eran Liberty eran.liberty@gmail.com
Acked-by: Grant Likely grant.likely@secretlab.ca
Index: common/fpga.c
--- common/fpga.c (.../tags/trunk/20070620_2_merge_to_exsw6000) (revision 69) +++ common/fpga.c (.../branches/exsw6000) (revision 69) @@ -64,7 +64,7 @@ /* fpga_no_sup
- 'no support' message function
*/ -static void fpga_no_sup( char *fn, char *msg ) +static void fpga_no_sup (const char *fn, const char *msg) { if ( fn && msg ) { printf( "%s: No support for %s. CONFIG_FPGA defined as 0x%x.\n", @@ -207,10 +207,6 @@ memset( desc_table, 0, sizeof(desc_table));
PRINTF( "%s: CONFIG_FPGA = 0x%x\n", __FUNCTION__, CONFIG_FPGA );
-#if 0
PRINTF( "%s: CFG_FPGA_XILINX = 0x%x\n", __FUNCTION__, CFG_FPGA_XILINX );
PRINTF( "%s: CFG_FPGA_ALTERA = 0x%x\n", __FUNCTION__, CFG_FPGA_ALTERA );
-#endif }
/* fpga_count
This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ U-Boot-Users mailing list U-Boot-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/u-boot-users
participants (2)
-
eran.liberty@gmail.com
-
Grant Likely