diff options
Diffstat (limited to 'hw/pl050.c')
-rw-r--r-- | hw/pl050.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pl050.c b/hw/pl050.c index c8818e0dc5..011edf25d6 100644 --- a/hw/pl050.c +++ b/hw/pl050.c @@ -110,13 +110,13 @@ static void pl050_write(void *opaque, target_phys_addr_t offset, hw_error("pl050_write: Bad offset %x\n", (int)offset); } } -static CPUReadMemoryFunc *pl050_readfn[] = { +static CPUReadMemoryFunc * const pl050_readfn[] = { pl050_read, pl050_read, pl050_read }; -static CPUWriteMemoryFunc *pl050_writefn[] = { +static CPUWriteMemoryFunc * const pl050_writefn[] = { pl050_write, pl050_write, pl050_write |