diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-04-17 16:59:12 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-04-17 16:59:12 -0400 |
commit | 698d3f92c20bab104ad873a245c2cf7823e2ae6d (patch) | |
tree | dd9623fa2aa341d53ebd73c928c55bf2ff5dd649 | |
parent | f9a774cc58d0bc802907fb4b37a3cc9d23f560c9 (diff) | |
download | seabios-698d3f92c20bab104ad873a245c2cf7823e2ae6d.tar.gz |
USB EHCI should yield() whil waiting for controller to ack reset.
-rw-r--r-- | src/usb-ehci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/usb-ehci.c b/src/usb-ehci.c index 1f683c8c..4df4b1c2 100644 --- a/src/usb-ehci.c +++ b/src/usb-ehci.c @@ -198,6 +198,7 @@ configure_ehci(void *data) warn_timeout(); goto fail; } + yield(); } // Disable interrupts (just to be safe). |