diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-25 18:29:31 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-25 18:29:31 +0000 |
commit | d60efc6b0d3d4e90cbbb86e21451e55263c29416 (patch) | |
tree | d5167171d11fa8e54f0ff11fae42c77cfac5af4a /hw/mcf5208.c | |
parent | fa31af0e63c5629d0bdc63eb87c1e44abd4fdb9e (diff) |
Make CPURead/WriteFunc structure 'const'
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/mcf5208.c')
-rw-r--r-- | hw/mcf5208.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/mcf5208.c b/hw/mcf5208.c index 1ee9680cbf..95a03fc0e6 100644 --- a/hw/mcf5208.c +++ b/hw/mcf5208.c @@ -118,13 +118,13 @@ static uint32_t m5208_timer_read(void *opaque, target_phys_addr_t addr) } } -static CPUReadMemoryFunc *m5208_timer_readfn[] = { +static CPUReadMemoryFunc * const m5208_timer_readfn[] = { m5208_timer_read, m5208_timer_read, m5208_timer_read }; -static CPUWriteMemoryFunc *m5208_timer_writefn[] = { +static CPUWriteMemoryFunc * const m5208_timer_writefn[] = { m5208_timer_write, m5208_timer_write, m5208_timer_write @@ -157,13 +157,13 @@ static void m5208_sys_write(void *opaque, target_phys_addr_t addr, hw_error("m5208_sys_write: Bad offset 0x%x\n", (int)addr); } -static CPUReadMemoryFunc *m5208_sys_readfn[] = { +static CPUReadMemoryFunc * const m5208_sys_readfn[] = { m5208_sys_read, m5208_sys_read, m5208_sys_read }; -static CPUWriteMemoryFunc *m5208_sys_writefn[] = { +static CPUWriteMemoryFunc * const m5208_sys_writefn[] = { m5208_sys_write, m5208_sys_write, m5208_sys_write |