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/spitz.c | |
parent | target-mips: fix conditional moves off fp condition codes (diff) | |
download | qemu-kvm-d60efc6b0d3d4e90cbbb86e21451e55263c29416.tar.gz qemu-kvm-d60efc6b0d3d4e90cbbb86e21451e55263c29416.tar.bz2 qemu-kvm-d60efc6b0d3d4e90cbbb86e21451e55263c29416.zip |
Make CPURead/WriteFunc structure 'const'
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/spitz.c')
-rw-r--r-- | hw/spitz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/spitz.c b/hw/spitz.c index 36bf5347e..c1d629f76 100644 --- a/hw/spitz.c +++ b/hw/spitz.c @@ -156,12 +156,12 @@ static void sl_flash_register(PXA2xxState *cpu, int size) { int iomemtype; SLNANDState *s; - CPUReadMemoryFunc *sl_readfn[] = { + CPUReadMemoryFunc * const sl_readfn[] = { sl_readb, sl_readb, sl_readl, }; - CPUWriteMemoryFunc *sl_writefn[] = { + CPUWriteMemoryFunc * const sl_writefn[] = { sl_writeb, sl_writeb, sl_writeb, |