summaryrefslogtreecommitdiff
path: root/drivers/usb/dwc3/core.c
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2013-10-11 13:34:28 (GMT)
committerFelipe Balbi <balbi@ti.com>2013-10-11 13:34:28 (GMT)
commit16b972a592ea2c9a3c2a3c12238de650fd4043a9 (patch)
treeef4a058e7540527cecb586130f99f5ffe7514b87 /drivers/usb/dwc3/core.c
parent5578b266e9ae05391d53b446acf23818256ff13f (diff)
downloadlinux-fsl-qoriq-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/usb/dwc3/core.c')
-rw-r--r--drivers/usb/dwc3/core.c2
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);