Commit fb2d6efbf298db3660a2130074b8b20a0ff26efd

Authored by Wolfgang Denk
1 parent f0e494988f
Exists in master and in 55 other branches 8qm-imx_v2020.04_5.4.70_2.3.0, emb_lf_v2022.04, emb_lf_v2023.04, imx_v2015.04_4.1.15_1.0.0_ga, pitx_8mp_lf_v2020.04, smarc-8m-android-10.0.0_2.6.0, smarc-8m-android-11.0.0_2.0.0, smarc-8mp-android-11.0.0_2.0.0, smarc-emmc-imx_v2014.04_3.10.53_1.1.0_ga, smarc-emmc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx-l5.0.0_1.0.0-ga, smarc-imx6_v2018.03_4.14.98_2.0.0_ga, smarc-imx7_v2017.03_4.9.11_1.0.0_ga, smarc-imx7_v2018.03_4.14.98_2.0.0_ga, smarc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx_v2015.04_4.1.15_1.0.0_ga, smarc-imx_v2017.03_4.9.11_1.0.0_ga, smarc-imx_v2017.03_4.9.88_2.0.0_ga, smarc-imx_v2017.03_o8.1.0_1.3.0_8m, smarc-imx_v2018.03_4.14.78_1.0.0_ga, smarc-m6.0.1_2.1.0-ga, smarc-n7.1.2_2.0.0-ga, smarc-rel_imx_4.1.15_2.0.0_ga, smarc_8m-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8m-imx_v2019.04_4.19.35_1.1.0, smarc_8m_00d0-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2019.04_4.19.35_1.1.0, smarc_8mm-imx_v2020.04_5.4.24_2.1.0, smarc_8mp_lf_v2020.04, smarc_8mq-imx_v2020.04_5.4.24_2.1.0, smarc_8mq_lf_v2020.04, ti-u-boot-2015.07, u-boot-2013.01.y, v2013.10, v2013.10-smarct33, v2013.10-smartmen, v2014.01, v2014.04, v2014.04-smarct33, v2014.04-smarct33-emmc, v2014.04-smartmen, v2014.07, v2014.07-smarct33, v2014.07-smartmen, v2015.07-smarct33, v2015.07-smarct33-emmc, v2015.07-smarct4x, v2016.05-dlt, v2016.05-smarct3x, v2016.05-smarct3x-emmc, v2016.05-smarct4x, v2017.01-smarct3x, v2017.01-smarct3x-emmc, v2017.01-smarct4x

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>

Showing 2 changed files with 5 additions and 5 deletions Side-by-side Diff

drivers/fpga/lattice.c
... ... @@ -34,7 +34,7 @@
34 34 #include <lattice.h>
35 35  
36 36 static lattice_board_specific_func *pfns;
37   -static char *fpga_image;
  37 +static const char *fpga_image;
38 38 static unsigned long read_bytes;
39 39 static unsigned long bufsize;
40 40 static unsigned short expectedCRC;
... ... @@ -302,7 +302,7 @@
302 302 return ret_val;
303 303 }
304 304  
305   -int lattice_load(Lattice_desc *desc, void *buf, size_t bsize)
  305 +int lattice_load(Lattice_desc *desc, const void *buf, size_t bsize)
306 306 {
307 307 int ret_val = FPGA_FAIL;
308 308  
... ... @@ -335,7 +335,7 @@
335 335 return ret_val;
336 336 }
337 337  
338   -int lattice_dump(Lattice_desc *desc, void *buf, size_t bsize)
  338 +int lattice_dump(Lattice_desc *desc, const void *buf, size_t bsize)
339 339 {
340 340 puts("Dump not supported for Lattice FPGA\n");
341 341  
... ... @@ -302,8 +302,8 @@
302 302 void ispVMDelay(unsigned short int a_usMicroSecondDelay);
303 303 void calibration(void);
304 304  
305   -int lattice_load(Lattice_desc *desc, void *buf, size_t bsize);
306   -int lattice_dump(Lattice_desc *desc, void *buf, size_t bsize);
  305 +int lattice_load(Lattice_desc *desc, const void *buf, size_t bsize);
  306 +int lattice_dump(Lattice_desc *desc, const void *buf, size_t bsize);
307 307 int lattice_info(Lattice_desc *desc);
308 308  
309 309 void ispVMStart(void);