Commit fb9b31e4 authored by Dmitry Osipenko's avatar Dmitry Osipenko Committed by Greg Kroah-Hartman

usb: chipidea: tegra: Silence deferred probe error

Silence deferred probe error caused by the PHY driver which is probed
later than the ChipIdea driver.
Signed-off-by: default avatarDmitry Osipenko <digetx@gmail.com>
Link: https://lore.kernel.org/r/20210314203927.2572-1-digetx@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 55b74ce7
...@@ -285,11 +285,9 @@ static int tegra_usb_probe(struct platform_device *pdev) ...@@ -285,11 +285,9 @@ static int tegra_usb_probe(struct platform_device *pdev)
} }
usb->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "nvidia,phy", 0); usb->phy = devm_usb_get_phy_by_phandle(&pdev->dev, "nvidia,phy", 0);
if (IS_ERR(usb->phy)) { if (IS_ERR(usb->phy))
err = PTR_ERR(usb->phy); return dev_err_probe(&pdev->dev, PTR_ERR(usb->phy),
dev_err(&pdev->dev, "failed to get PHY: %d\n", err); "failed to get PHY\n");
return err;
}
usb->clk = devm_clk_get(&pdev->dev, NULL); usb->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(usb->clk)) { if (IS_ERR(usb->clk)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment