The patch titled OHCI: disallow autostop when wakeup is disabled has been removed from the -mm tree. Its filename was ohci-disallow-autostop-when-wakeup-is-disabled.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: OHCI: disallow autostop when wakeup is disabled From: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> This patch (as822) prevents the OHCI autostop mechanism from starting up if the root hub is not able or not allowed to issue wakeup requests. Signed-off-by: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/host/ohci-hub.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/usb/host/ohci-hub.c~ohci-disallow-autostop-when-wakeup-is-disabled drivers/usb/host/ohci-hub.c --- a/drivers/usb/host/ohci-hub.c~ohci-disallow-autostop-when-wakeup-is-disabled +++ a/drivers/usb/host/ohci-hub.c @@ -406,7 +406,8 @@ ohci_hub_status_data (struct usb_hcd *hc ohci->autostop = 0; ohci->next_statechange = jiffies + STATECHANGE_DELAY; - } else if (time_after_eq (jiffies, + } else if (device_may_wakeup(&hcd->self.root_hub->dev) + && time_after_eq(jiffies, ohci->next_statechange) && !ohci->ed_rm_list && !(ohci->hc_control & _ Patches currently in -mm which might be from stern@xxxxxxxxxxxxxxxxxxx are origin.patch git-scsi-misc.patch allow-null-pointers-in-percpu_free.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html