This is a note to let you know that I've just added the patch titled Subject: USB: EHCI: add a short delay to the bus_suspend routine
to my gregkh-2.6 tree. Its filename is usb-ehci-add-a-short-delay-to-the-bus_suspend-routine.patch This tree can be found at http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/ >From [EMAIL PROTECTED] Fri Jan 11 17:14:34 2008 From: Alan Stern <[EMAIL PROTECTED]> Date: Thu, 10 Jan 2008 11:14:53 -0500 (EST) Subject: USB: EHCI: add a short delay to the bus_suspend routine To: Greg KH <[EMAIL PROTECTED]> Cc: David Brownell <[EMAIL PROTECTED]>, USB list <linux-usb@vger.kernel.org> Message-ID: <[EMAIL PROTECTED]> This patch (as1031) adds a short delay to the bus-suspend routine in ehci-hcd. Without it some devices disconnect when they should suspend. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Acked-by: David Brownell <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> --- drivers/usb/host/ehci-hub.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c @@ -172,6 +172,10 @@ static int ehci_bus_suspend (struct usb_ } } + /* Apparently some devices need a >= 1-uframe delay here */ + if (ehci->bus_suspended) + udelay(150); + /* turn off now-idle HC */ ehci_halt (ehci); hcd->state = HC_STATE_SUSPENDED; Patches currently in gregkh-2.6 which might be from [EMAIL PROTECTED] are driver/pm-acquire-device-locks-prior-to-suspending.patch driver/kobject-drop-child-parent-ref-at-unregistration.patch driver/driver-core-fix-race-in-__device_release_driver.patch driver/driver-core-fix-class-glue-dir-cleanup-logic.patch usb/usb-add-usbfs-stubs-for-suspend-and-resume.patch usb/usb-dummy_hcd-change-the-default-power-budget.patch usb/usb-usb-storage-new-lockable-subclass-0x07.patch usb/usb-ehci-add-separate-iaa-watchdog-timer.patch usb/usb-usb-mon-mon_bin.c-cleanups.patch usb/usb-autosuspend-for-cdc-acm.patch usb/usb-repair-usbdevfs_connect-ioctl.patch usb/usb-don-t-change-hc-power-state-for-a-freeze.patch usb/usb-dummy_hcd-don-t-register-drivers-on-the-platform-bus.patch usb/usb-force-handover-port-to-companion-when-hub_port_connect_change-fails.patch usb/usb-make-ksuspend_usbd-thread-non-freezable.patch usb/usb-updates-to-usb_reset_composite_device.patch usb/usb-ehci-add-a-short-delay-to-the-bus_suspend-routine.patch usb/usb-ehci-move-del_timer_sync-calls-outside-spinlocked-region.patch - To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html