diff options
Diffstat (limited to 'hw/pl181.c')
-rw-r--r-- | hw/pl181.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pl181.c b/hw/pl181.c index 3075c9e015..955e5ec3c3 100644 --- a/hw/pl181.c +++ b/hw/pl181.c @@ -409,13 +409,13 @@ static void pl181_write(void *opaque, target_phys_addr_t offset, pl181_update(s); } -static CPUReadMemoryFunc *pl181_readfn[] = { +static CPUReadMemoryFunc * const pl181_readfn[] = { pl181_read, pl181_read, pl181_read }; -static CPUWriteMemoryFunc *pl181_writefn[] = { +static CPUWriteMemoryFunc * const pl181_writefn[] = { pl181_write, pl181_write, pl181_write |