aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-10-24 13:02:14 +0000
committerStefan Reinauer <stepan@openbios.org>2009-10-24 13:02:14 +0000
commitb53bed15677e8bd97f58f7f5d847f1029ddaa41b (patch)
treeeb034bbdf7b56f047bcc55fbb29360086556f497 /src/lib
parent8f3b8583e2fc8c6d7b869c3aab73d2364bb8e37d (diff)
Fix USB Debug Device for Intel ICH chipsets
The USB EHCI controller reset is not really needed on ICH, and in fact the code bailed out there which is the most stupid thing to do. So just keep trying. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4836 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/usbdebug_direct.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/usbdebug_direct.c b/src/lib/usbdebug_direct.c
index 3125dc084d..48875dc610 100644
--- a/src/lib/usbdebug_direct.c
+++ b/src/lib/usbdebug_direct.c
@@ -407,11 +407,10 @@ try_next_port:
cmd = readl(&ehci_regs->command);
} while ((cmd & CMD_RESET) && (--loop > 0));
- if(!loop) {
+ if(!loop)
dbgp_printk("Could not reset EHCI controller.\n");
- return;
- }
- dbgp_printk("EHCI controller reset successfully.\n");
+ else
+ dbgp_printk("EHCI controller reset successfully.\n");
/* Claim ownership, but do not enable yet */
ctrl = readl(&ehci_debug->control);