From d60efc6b0d3d4e90cbbb86e21451e55263c29416 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Tue, 25 Aug 2009 18:29:31 +0000 Subject: Make CPURead/WriteFunc structure 'const' Signed-off-by: Blue Swirl --- hw/axis_dev88.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hw/axis_dev88.c') 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, }; -- cgit v1.2.3