diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-28 18:30:54 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-28 18:30:54 +0000 |
commit | bdae2298d1c2127b6967ef9fddd736c72ff39a42 (patch) | |
tree | 543dab1c74c1a98b9663225c12078f10db0ad63b /hw/ide/macio.c | |
parent | e44bd6fc15757193d044188213e439ca942dd581 (diff) | |
download | qemu-bdae2298d1c2127b6967ef9fddd736c72ff39a42.zip qemu-bdae2298d1c2127b6967ef9fddd736c72ff39a42.tar.gz qemu-bdae2298d1c2127b6967ef9fddd736c72ff39a42.tar.bz2 |
Fix merge of 59f2a78793b6d17634f39646d604e84af51e0919
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
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 4dc3568..820cc77 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, |