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/mcf_fec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/mcf_fec.c') diff --git a/hw/mcf_fec.c b/hw/mcf_fec.c index 27f27a6cd9..f6d2bab12d 100644 --- a/hw/mcf_fec.c +++ b/hw/mcf_fec.c @@ -429,13 +429,13 @@ static ssize_t mcf_fec_receive(VLANClientState *vc, const uint8_t *buf, size_t s return size; } -static CPUReadMemoryFunc *mcf_fec_readfn[] = { +static CPUReadMemoryFunc * const mcf_fec_readfn[] = { mcf_fec_read, mcf_fec_read, mcf_fec_read }; -static CPUWriteMemoryFunc *mcf_fec_writefn[] = { +static CPUWriteMemoryFunc * const mcf_fec_writefn[] = { mcf_fec_write, mcf_fec_write, mcf_fec_write -- cgit v1.2.1