mirror of https://github.com/xemu-project/xemu.git
i8259: Do not update IRQ output after spurious pic_poll_read
If pic_poll_read finds no pending IRQ and return a spurious one instead, no PIC state is changed, thus we do not need to call pic_update_irq. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
2e2b227499
commit
afdb06f849
|
@ -393,7 +393,6 @@ static uint32_t pic_poll_read(PicState *s)
|
||||||
pic_update_irq(s->pics_state);
|
pic_update_irq(s->pics_state);
|
||||||
} else {
|
} else {
|
||||||
ret = 0x07;
|
ret = 0x07;
|
||||||
pic_update_irq(s->pics_state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue