From 3c4cf5353b25d62795ecafbc88ea67e3ede4196f Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Tue, 3 Mar 2009 20:11:43 +0000 Subject: Fix slavio_intctl.c compile errors (Robert Reif) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6680 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/slavio_intctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/slavio_intctl.c') diff --git a/hw/slavio_intctl.c b/hw/slavio_intctl.c index ff8f0c7..b481b2c 100644 --- a/hw/slavio_intctl.c +++ b/hw/slavio_intctl.c @@ -98,7 +98,7 @@ static uint32_t slavio_intctl_mem_readl(void *opaque, target_phys_addr_t addr) ret = 0; break; } - DPRINTF("read cpu %d reg 0x" TARGET_FMT_plx " = %x\n", cpu, addr, ret); + DPRINTF("read cpu %d reg 0x" TARGET_FMT_plx " = %x\n", s->cpu, addr, ret); return ret; } @@ -110,7 +110,7 @@ static void slavio_intctl_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t saddr; saddr = addr >> 2; - DPRINTF("write cpu %d reg 0x" TARGET_FMT_plx " = %x\n", cpu, addr, val); + DPRINTF("write cpu %d reg 0x" TARGET_FMT_plx " = %x\n", s->cpu, addr, val); switch (saddr) { case 1: // clear pending softints if (val & CPU_IRQ_INT15_IN) -- cgit v1.1