提交 320c3fce 编写于 作者: A Axel Lin 提交者: Kishon Vijay Abraham I

phy: miphy28lp: Use PTR_ERR_OR_ZERO

PTR_ERR_OR_ZERO simplifies the code.
Signed-off-by: NAxel Lin <axel.lin@ingics.com>
Acked-by: Gabriel Fernandez<gabriel.fernandez@linaro.org>
Signed-off-by: NKishon Vijay Abraham I <kishon@ti.com>
上级 f8f55393
...@@ -1258,10 +1258,7 @@ static int miphy28lp_probe(struct platform_device *pdev) ...@@ -1258,10 +1258,7 @@ static int miphy28lp_probe(struct platform_device *pdev)
} }
provider = devm_of_phy_provider_register(&pdev->dev, miphy28lp_xlate); provider = devm_of_phy_provider_register(&pdev->dev, miphy28lp_xlate);
if (IS_ERR(provider)) return PTR_ERR_OR_ZERO(provider);
return PTR_ERR(provider);
return 0;
} }
static const struct of_device_id miphy28lp_of_match[] = { static const struct of_device_id miphy28lp_of_match[] = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册