diff options
author | Hans de Goede <hdegoede@redhat.com> | 2012-12-14 14:35:32 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-01-07 12:57:23 +0100 |
commit | 4a9ef2c042207e4eddbd010ccf2e1c8264d8f0d6 (patch) | |
tree | b31dee9eec0299035ba1d9230bbdf43c2cb21f18 /hw/usb | |
parent | 52c15e5986cd0f6531a2989a81a964f77b4ed9c2 (diff) | |
download | qemu-4a9ef2c042207e4eddbd010ccf2e1c8264d8f0d6.zip qemu-4a9ef2c042207e4eddbd010ccf2e1c8264d8f0d6.tar.gz qemu-4a9ef2c042207e4eddbd010ccf2e1c8264d8f0d6.tar.bz2 |
ehci: Don't call commit_irq after raising PCD
ehci_raise_irq(s, USBSTS_PCD), gets applied immediately so there is no need
to call commit_irq after it.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/hcd-ehci.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c index 8da4b6a..1713394 100644 --- a/hw/usb/hcd-ehci.c +++ b/hw/usb/hcd-ehci.c @@ -757,7 +757,6 @@ static void ehci_attach(USBPort *port) *portsc |= PORTSC_CSC; ehci_raise_irq(s, USBSTS_PCD); - ehci_commit_irq(s); } static void ehci_detach(USBPort *port) @@ -787,7 +786,6 @@ static void ehci_detach(USBPort *port) *portsc |= PORTSC_CSC; ehci_raise_irq(s, USBSTS_PCD); - ehci_commit_irq(s); } static void ehci_child_detach(USBPort *port, USBDevice *child) |