diff options
Diffstat (limited to 'hw/etraxfs_ser.c')
-rw-r--r-- | hw/etraxfs_ser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/etraxfs_ser.c b/hw/etraxfs_ser.c index 7cb5e71884..5b5b6c00e8 100644 --- a/hw/etraxfs_ser.c +++ b/hw/etraxfs_ser.c @@ -122,12 +122,12 @@ ser_writel (void *opaque, target_phys_addr_t addr, uint32_t value) ser_update_irq(s); } -static CPUReadMemoryFunc *ser_read[] = { +static CPUReadMemoryFunc * const ser_read[] = { NULL, NULL, &ser_readl, }; -static CPUWriteMemoryFunc *ser_write[] = { +static CPUWriteMemoryFunc * const ser_write[] = { NULL, NULL, &ser_writel, }; |