Re: [U-Boot] [PATCH] fpga: constify to fix build warning

2011-08-01 Thread Wolfgang Denk
Dear Wolfgang Denk, In message <1312068829-8498-1-git-send-email...@denx.de> you wrote: > 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

Re: [U-Boot] [PATCH] fpga: constify to fix build warning

2011-08-01 Thread Andre Schwarz
Wolfgang, thanks for fixing. > 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 > C

[U-Boot] [PATCH] fpga: constify to fix build warning

2011-07-30 Thread Wolfgang Denk
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 Cc: Andre Schwarz Cc: Murray Jensen --- boar