aboutsummaryrefslogtreecommitdiffstats
path: root/usb
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2006-06-23 11:27:15 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2006-06-23 11:27:15 -0700
commit831b49252207fe8c2b2d12fbfce573b3a7bf6031 (patch)
treec31675dddcc17b0bf1f2044bb0ca259b283b42c7 /usb
parent3b642cf30561220b7798fac3ea1455d505e02c39 (diff)
downloadpatches-831b49252207fe8c2b2d12fbfce573b3a7bf6031.tar.gz
remove 2 more patches in mainline
Diffstat (limited to 'usb')
-rw-r--r--usb/usb-get-usb-suspend-to-work-again.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/usb/usb-get-usb-suspend-to-work-again.patch b/usb/usb-get-usb-suspend-to-work-again.patch
deleted file mode 100644
index 535f44a79176f..0000000000000
--- a/usb/usb-get-usb-suspend-to-work-again.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From foo@baz Tue Apr 9 12:12:43 2002
-Date: Thu, 22 Jun 2006 13:29:52 -0700
-To: Greg KH <greg@kroah.com>
-From: Greg Kroah-Hartman <gregkh@suse.de>
-Subject: USB: get USB suspend to work again
-
-Yeah, it's a hack, but it is only temporary until Alan's patches
-reworking this area make it in. We really should not care what devices
-below us are doing, especially when we do not really know what type of
-devices they are. This patch relies on the fact that the endpoint
-devices do not have a driver assigned to us.
-
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-
----
- drivers/usb/core/usb.c | 2 ++
- 1 file changed, 2 insertions(+)
-
---- gregkh-2.6.orig/drivers/usb/core/usb.c
-+++ gregkh-2.6/drivers/usb/core/usb.c
-@@ -991,6 +991,8 @@ void usb_buffer_unmap_sg (struct usb_dev
-
- static int verify_suspended(struct device *dev, void *unused)
- {
-+ if (dev->driver == NULL)
-+ return 0;
- return (dev->power.power_state.event == PM_EVENT_ON) ? -EBUSY : 0;
- }
-