mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target-alpha: Fix interrupt mask for cpu1
A typo prevents ISA interrupts from being recognized on cpu0, which is where the smp kernel normally wants to see them. Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
c36ed06e91
commit
424ad8388f
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ static void cchip_write(void *opaque, hwaddr addr,
|
|||
break;
|
||||
case 0x0240: /* DIM1 */
|
||||
/* DIM: Device Interrupt Mask Register, CPU1. */
|
||||
s->cchip.dim[0] = val;
|
||||
s->cchip.dim[1] = val;
|
||||
cpu_irq_change(s->cchip.cpu[1], val & s->cchip.drir);
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue