mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
usb-uhci: update irq line on reset
uhci_reset() clears irq mask and irq status registers, but doesn't update the irq line. Which may result in suspious IRQs after uhci reset. Fix it. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
9d55d1adc8
commit
aba1f24283
1 changed files with 1 additions and 0 deletions
|
@ -369,6 +369,7 @@ static void uhci_reset(void *opaque)
|
|||
}
|
||||
|
||||
uhci_async_cancel_all(s);
|
||||
uhci_update_irq(s);
|
||||
}
|
||||
|
||||
static void uhci_pre_save(void *opaque)
|
||||
|
|
Loading…
Reference in a new issue