diff options
Diffstat (limited to 'hw/r2d.c')
-rw-r--r-- | hw/r2d.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -155,13 +155,13 @@ r2d_fpga_write(void *opaque, target_phys_addr_t addr, uint32_t value) } } -static CPUReadMemoryFunc *r2d_fpga_readfn[] = { +static CPUReadMemoryFunc * const r2d_fpga_readfn[] = { r2d_fpga_read, r2d_fpga_read, NULL, }; -static CPUWriteMemoryFunc *r2d_fpga_writefn[] = { +static CPUWriteMemoryFunc * const r2d_fpga_writefn[] = { r2d_fpga_write, r2d_fpga_write, NULL, |