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/axis_dev88.c | |
parent | fa31af0e63c5629d0bdc63eb87c1e44abd4fdb9e (diff) |
Make CPURead/WriteFunc structure 'const'
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/axis_dev88.c')
-rw-r--r-- | hw/axis_dev88.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/axis_dev88.c b/hw/axis_dev88.c index f93f43145c..b5163b655f 100644 --- a/hw/axis_dev88.c +++ b/hw/axis_dev88.c @@ -69,13 +69,13 @@ nand_writel (void *opaque, target_phys_addr_t addr, uint32_t value) s->rdy = rdy; } -static CPUReadMemoryFunc *nand_read[] = { +static CPUReadMemoryFunc * const nand_read[] = { &nand_readl, &nand_readl, &nand_readl, }; -static CPUWriteMemoryFunc *nand_write[] = { +static CPUWriteMemoryFunc * const nand_write[] = { &nand_writel, &nand_writel, &nand_writel, @@ -226,12 +226,12 @@ static void gpio_writel (void *opaque, target_phys_addr_t addr, uint32_t value) } } -static CPUReadMemoryFunc *gpio_read[] = { +static CPUReadMemoryFunc * const gpio_read[] = { NULL, NULL, &gpio_readl, }; -static CPUWriteMemoryFunc *gpio_write[] = { +static CPUWriteMemoryFunc * const gpio_write[] = { NULL, NULL, &gpio_writel, }; |