summaryrefslogtreecommitdiff
path: root/drivers/phy/phy-miphy28lp.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2015-03-05 09:44:06 +0800
committerKishon Vijay Abraham I <kishon@ti.com>2015-03-10 14:12:27 +0530
commit320c3fcec64a9e115a3d8a5d005d2fb21c15ef01 (patch)
treed055f226e824e5bfccfabd945f9c6508a06bb140 /drivers/phy/phy-miphy28lp.c
parentf8f55393b2860a2a5c97ff3b18c6ee02cef021c4 (diff)
phy: miphy28lp: Use PTR_ERR_OR_ZERO
PTR_ERR_OR_ZERO simplifies the code. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Gabriel Fernandez<gabriel.fernandez@linaro.org> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy/phy-miphy28lp.c')
-rw-r--r--drivers/phy/phy-miphy28lp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/phy/phy-miphy28lp.c b/drivers/phy/phy-miphy28lp.c
index 9b2848e6115d..174ffd037ef7 100644
--- a/drivers/phy/phy-miphy28lp.c
+++ b/drivers/phy/phy-miphy28lp.c
@@ -1258,10 +1258,7 @@ static int miphy28lp_probe(struct platform_device *pdev)
}
provider = devm_of_phy_provider_register(&pdev->dev, miphy28lp_xlate);
- if (IS_ERR(provider))
- return PTR_ERR(provider);
-
- return 0;
+ return PTR_ERR_OR_ZERO(provider);
}
static const struct of_device_id miphy28lp_of_match[] = {