git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5df1eb9
)
usb: dwc3: core: use pm_runtime_put_sync() on remove
author
Felipe Balbi
<balbi@ti.com>
Fri, 11 Oct 2013 13:34:28 +0000
(08:34 -0500)
committer
Ben Hutchings
<ben@decadent.org.uk>
Wed, 5 Nov 2014 20:27:41 +0000
(20:27 +0000)
commit
16b972a592ea2c9a3c2a3c12238de650fd4043a9
upstream.
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>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/usb/dwc3/core.c
patch
|
blob
|
history
diff --git
a/drivers/usb/dwc3/core.c
b/drivers/usb/dwc3/core.c
index
600d823
..
b844b15
100644
(file)
--- a/
drivers/usb/dwc3/core.c
+++ b/
drivers/usb/dwc3/core.c
@@
-427,7
+427,7
@@
static int __devexit dwc3_remove(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- pm_runtime_put(&pdev->dev);
+ pm_runtime_put
_sync
(&pdev->dev);
pm_runtime_disable(&pdev->dev);
dwc3_debugfs_exit(dwc);