| Submitter | Hans de Goede |
|---|---|
| Date | Dec. 14, 2012, 1:35 p.m. |
| Message ID | <1355492147-5023-12-git-send-email-hdegoede@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/206478/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c index c4d77bc..36165b0 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)
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> --- hw/usb/hcd-ehci.c | 2 -- 1 file changed, 2 deletions(-)