diff options
author | Felipe Balbi <balbi@ti.com> | 2013-10-11 13:34:28 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-10-11 13:34:28 (GMT) |
commit | 16b972a592ea2c9a3c2a3c12238de650fd4043a9 (patch) | |
tree | ef4a058e7540527cecb586130f99f5ffe7514b87 /drivers | |
parent | 5578b266e9ae05391d53b446acf23818256ff13f (diff) | |
download | linux-16b972a592ea2c9a3c2a3c12238de650fd4043a9.tar.xz |
usb: dwc3: core: use pm_runtime_put_sync() on remove
We are going to disable runtime_pm and we're
removing the driver, we must disable the device
now.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/dwc3/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index e88ffae..74f9cf0 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -584,7 +584,7 @@ static int dwc3_remove(struct platform_device *pdev) usb_phy_set_suspend(dwc->usb2_phy, 1); usb_phy_set_suspend(dwc->usb3_phy, 1); - pm_runtime_put(&pdev->dev); + pm_runtime_put_sync(&pdev->dev); pm_runtime_disable(&pdev->dev); dwc3_debugfs_exit(dwc); |