Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 59382
b: refs/heads/master
c: b6f6436
h: refs/heads/master
v: v3
  • Loading branch information
Alan Stern authored and Greg Kroah-Hartman committed Jul 12, 2007
1 parent 2195524 commit f0c7249
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 40 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4d461095ef6967324bc5da5d65d23ad27fc604f9
refs/heads/master: b6f6436da0c6853eedad86f5075b139c1a3bcb5d
11 changes: 5 additions & 6 deletions trunk/drivers/usb/core/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -802,14 +802,13 @@ static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
udev->state == USB_STATE_SUSPENDED)
goto done;

/* For devices that don't have a driver, we do a standard suspend. */
if (udev->dev.driver == NULL) {
/* For devices that don't have a driver, we do a generic suspend. */
if (udev->dev.driver)
udriver = to_usb_device_driver(udev->dev.driver);
else {
udev->do_remote_wakeup = 0;
status = usb_port_suspend(udev);
goto done;
udriver = &usb_generic_driver;
}

udriver = to_usb_device_driver(udev->dev.driver);
status = udriver->suspend(udev, msg);

done:
Expand Down
39 changes: 37 additions & 2 deletions trunk/drivers/usb/core/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include <linux/usb.h>
#include "usb.h"
#include "hcd.h"

static inline const char *plural(int n)
{
Expand Down Expand Up @@ -193,12 +194,46 @@ static void generic_disconnect(struct usb_device *udev)

static int generic_suspend(struct usb_device *udev, pm_message_t msg)
{
return usb_port_suspend(udev);
int rc;

rc = usb_port_suspend(udev);

/* Root hubs don't have upstream ports to suspend,
* so the line above won't do much for them. We have to
* shut down their downstream HC-to-USB interfaces manually,
* by doing a bus (or "global") suspend.
*/
if (rc == 0 && !udev->parent) {
rc = hcd_bus_suspend(udev->bus);
if (rc) {
dev_dbg(&udev->dev, "'global' suspend %d\n", rc);
usb_port_resume(udev);
}
}
return rc;
}

static int generic_resume(struct usb_device *udev)
{
return usb_port_resume(udev);
int rc;

rc = usb_port_resume(udev);

/* Root hubs don't have upstream ports to resume or reset,
* so the line above won't do much for them. We have to
* start up their downstream HC-to-USB interfaces manually,
* by doing a bus (or "global") resume.
*/
if (rc == 0 && !udev->parent) {
rc = hcd_bus_resume(udev->bus);
if (rc)
dev_dbg(&udev->dev, "'global' resume %d\n", rc);
else {
/* TRSMRCY = 10 msec */
msleep(10);
}
}
return rc;
}

#endif /* CONFIG_PM */
Expand Down
32 changes: 1 addition & 31 deletions trunk/drivers/usb/core/hub.c
Original file line number Diff line number Diff line change
Expand Up @@ -1916,7 +1916,6 @@ static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
struct usb_hub *hub = usb_get_intfdata (intf);
struct usb_device *hdev = hub->hdev;
unsigned port1;
int status = 0;

/* fail if children aren't already suspended */
for (port1 = 1; port1 <= hdev->maxchild; port1++) {
Expand All @@ -1942,44 +1941,15 @@ static int hub_suspend(struct usb_interface *intf, pm_message_t msg)

/* stop khubd and related activity */
hub_quiesce(hub);

/* "global suspend" of the downstream HC-to-USB interface */
if (!hdev->parent) {
status = hcd_bus_suspend(hdev->bus);
if (status != 0) {
dev_dbg(&hdev->dev, "'global' suspend %d\n", status);
hub_activate(hub);
}
}
return status;
return 0;
}

static int hub_resume(struct usb_interface *intf)
{
struct usb_hub *hub = usb_get_intfdata (intf);
struct usb_device *hdev = hub->hdev;
int status;

dev_dbg(&intf->dev, "%s\n", __FUNCTION__);

/* "global resume" of the downstream HC-to-USB interface */
if (!hdev->parent) {
struct usb_bus *bus = hdev->bus;
if (bus) {
status = hcd_bus_resume (bus);
if (status) {
dev_dbg(&intf->dev, "'global' resume %d\n",
status);
return status;
}
} else
return -EOPNOTSUPP;
if (status == 0) {
/* TRSMRCY = 10 msec */
msleep(10);
}
}

/* tell khubd to look for changes on this hub */
hub_activate(hub);
return 0;
Expand Down

0 comments on commit f0c7249

Please sign in to comment.