From dfebf62bb9cde4881e9d920d462082ef7e7b5407 Mon Sep 17 00:00:00 2001 From: aurel32 Date: Mon, 2 Mar 2009 16:42:14 +0000 Subject: [PATCH] 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 --- hw/openpic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/openpic.c b/hw/openpic.c index 6e4126b91d..46a2706b3d 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}, -- 2.11.4.GIT