mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-18 06:15:12 +00:00
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>
This commit is contained in:
parent
03e6275ae3
commit
380375b937
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user