Fix slavio_intctl.c compile errors (Robert Reif)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6680 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
d488ddd835
commit
3c4cf5353b
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user