diff options
Diffstat (limited to 'hw/ide/macio.c')
-rw-r--r-- | hw/ide/macio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/ide/macio.c b/hw/ide/macio.c index 4dc35682f1..820cc77be3 100644 --- a/hw/ide/macio.c +++ b/hw/ide/macio.c @@ -279,13 +279,13 @@ static uint32_t pmac_ide_readl (void *opaque,target_phys_addr_t addr) return retval; } -static CPUWriteMemoryFunc *pmac_ide_write[] = { +static CPUWriteMemoryFunc * const pmac_ide_write[] = { pmac_ide_writeb, pmac_ide_writew, pmac_ide_writel, }; -static CPUReadMemoryFunc *pmac_ide_read[] = { +static CPUReadMemoryFunc * const pmac_ide_read[] = { pmac_ide_readb, pmac_ide_readw, pmac_ide_readl, |