From: aurel32 Date: Mon, 2 Mar 2009 16:42:14 +0000 (+0000) Subject: hw/openpic: define list in mpic_init() const X-Git-Tag: xen-3.4.0-rc2~12^2~25 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=dfebf62bb9cde4881e9d920d462082ef7e7b5407;p=qemu-xen-3.4-testing.git hw/openpic: define list in mpic_init() const Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6660 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/openpic.c b/hw/openpic.c index 6e4126b9..46a2706b 100644 --- a/hw/openpic.c +++ b/hw/openpic.c @@ -1669,7 +1669,7 @@ qemu_irq *mpic_init (target_phys_addr_t base, int nb_cpus, CPUWriteMemoryFunc **write; target_phys_addr_t start_addr; ram_addr_t size; - } list[] = { + } const list[] = { {mpic_glb_read, mpic_glb_write, MPIC_GLB_REG_START, MPIC_GLB_REG_SIZE}, {mpic_tmr_read, mpic_tmr_write, MPIC_TMR_REG_START, MPIC_TMR_REG_SIZE}, {mpic_ext_read, mpic_ext_write, MPIC_EXT_REG_START, MPIC_EXT_REG_SIZE},