|
@@ -479,7 +479,8 @@ static int da8xx_probe(struct platform_device *pdev)
|
|
|
|
|
|
glue->phy = devm_phy_get(&pdev->dev, "usb-phy");
|
|
glue->phy = devm_phy_get(&pdev->dev, "usb-phy");
|
|
if (IS_ERR(glue->phy)) {
|
|
if (IS_ERR(glue->phy)) {
|
|
- dev_err(&pdev->dev, "failed to get phy\n");
|
|
|
|
|
|
+ if (PTR_ERR(glue->phy) != -EPROBE_DEFER)
|
|
|
|
+ dev_err(&pdev->dev, "failed to get phy\n");
|
|
return PTR_ERR(glue->phy);
|
|
return PTR_ERR(glue->phy);
|
|
}
|
|
}
|
|
|
|
|