[PATCH] USB: fix bug in ohci-hcd.c ohci_restart()
authorDavid Brownell <david-b@pacbell.net>
Wed, 26 Apr 2006 21:39:11 +0000 (14:39 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 9 May 2006 06:43:54 +0000 (23:43 -0700)
A loop on a power-lost resume path used the wrong index.
I suspect khubd has been working around such bugs.
Noticed by Andreas Mohr <andi@rhlx01.fht-esslingen.de>.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/host/ohci-hcd.c

index 544f758..73f5a37 100644 (file)
@@ -863,7 +863,7 @@ static int ohci_restart (struct ohci_hcd *ohci)
                i = ohci->num_ports;
                while (i--)
                        ohci_writel (ohci, RH_PS_PSS,
-                               &ohci->regs->roothub.portstatus [temp]);
+                               &ohci->regs->roothub.portstatus [i]);
                ohci_dbg (ohci, "restart complete\n");
        }
        return 0;