From: Gerd Hoffmann Date: Tue, 7 Mar 2017 08:40:18 +0000 (+0100) Subject: ohci: relax link check X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ab6b1105a2259c7072905887f71caa850ce63190;p=qmiga%2Fqemu.git ohci: relax link check The strict td link limit added by commit "95ed569 usb: ohci: limit the number of link eds" causes problems with macos guests. Lets raise the limit. Reported-by: Programmingkid Reported-by: Howard Spoelstra Signed-off-by: Gerd Hoffmann Reviewed-by: BALATON Zoltan Reviewed-by: John Arbuckle Message-id: 1488876018-31576-1-git-send-email-kraxel@redhat.com --- diff --git a/hw/usb/hcd-ohci.c b/hw/usb/hcd-ohci.c index fe8406ac64..3ada35e954 100644 --- a/hw/usb/hcd-ohci.c +++ b/hw/usb/hcd-ohci.c @@ -42,7 +42,7 @@ #define OHCI_MAX_PORTS 15 -#define ED_LINK_LIMIT 4 +#define ED_LINK_LIMIT 32 static int64_t usb_frame_time; static int64_t usb_bit_time;