Skip to content

Commit

Permalink
usb: enable usb port device's async suspend.
Browse files Browse the repository at this point in the history
This patch is to set power.async_suspend for usb port in order
to allow it to be suspended and resumed asynchronously during
system sleep transitions.

The power.async_suspend flag is also set for devices that don't have
suspend or resume callbacks, because otherwise they would make the
main suspend/resume thread wait for their "asynchronous" children
(during suspend) or parents (during resume), effectively negating the
possible gains from executing these devices' suspend and resume
callbacks asynchronously.

Signed-off-by: Lan Tianyu <tianyu.lan@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Lan Tianyu authored and Greg Kroah-Hartman committed Jan 25, 2013
1 parent f6cced1 commit 192fef1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/usb/core/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ int usb_hub_create_port_device(struct usb_hub *hub, int port1)
PM_QOS_FLAG_NO_POWER_OFF))
pm_runtime_enable(&port_dev->dev);

device_enable_async_suspend(&port_dev->dev);

retval = usb_acpi_register_power_resources(&port_dev->dev);
if (retval && retval != -ENODEV)
Expand Down

0 comments on commit 192fef1

Please sign in to comment.