aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorJon Hunter <jonathanh@nvidia.com>2018-05-30 16:11:42 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-05-31 12:45:22 +0200
commit380375b937211376f1dba4543460a14d3df9f04d (patch)
tree9236aa19774d21422c1c4372fc2a3bf3e4e9ffed /drivers/usb
parentusb: chipidea: Fix ULPI on imx51 (diff)
downloadlinux-dev-380375b937211376f1dba4543460a14d3df9f04d.tar.xz
linux-dev-380375b937211376f1dba4543460a14d3df9f04d.zip
usb: xhci: tegra: Fix runtime PM support
Fix silly mistake when enabling runtime PM support for the Tegra XHCI driver. If runtime PM was enabled correctly for the XHCI device, then we should call pm_runtime_get_sync() to enable the device. Fixes: ee9e5f4c7825 ("usb: xhci: tegra: Add runtime PM support") Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/host/xhci-tegra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-tegra.c b/drivers/usb/host/xhci-tegra.c
index c78fc2942bca..a8c1d073cba0 100644
--- a/drivers/usb/host/xhci-tegra.c
+++ b/drivers/usb/host/xhci-tegra.c
@@ -1136,7 +1136,7 @@ static int tegra_xusb_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, tegra);
pm_runtime_enable(&pdev->dev);
- if (!pm_runtime_enabled(&pdev->dev))
+ if (pm_runtime_enabled(&pdev->dev))
err = pm_runtime_get_sync(&pdev->dev);
else
err = tegra_xusb_runtime_resume(&pdev->dev);