diff options
Diffstat (limited to 'hw/slavio_timer.c')
-rw-r--r-- | hw/slavio_timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/slavio_timer.c b/hw/slavio_timer.c index 531d6db92e..08302e04af 100644 --- a/hw/slavio_timer.c +++ b/hw/slavio_timer.c @@ -336,13 +336,13 @@ static void slavio_timer_mem_writel(void *opaque, target_phys_addr_t addr, } } -static CPUReadMemoryFunc *slavio_timer_mem_read[3] = { +static CPUReadMemoryFunc * const slavio_timer_mem_read[3] = { NULL, NULL, slavio_timer_mem_readl, }; -static CPUWriteMemoryFunc *slavio_timer_mem_write[3] = { +static CPUWriteMemoryFunc * const slavio_timer_mem_write[3] = { NULL, NULL, slavio_timer_mem_writel, |