projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8f5539
)
phy: miphy28lp: Use PTR_ERR_OR_ZERO
author
Axel Lin
<axel.lin@ingics.com>
Thu, 5 Mar 2015 01:44:06 +0000
(09:44 +0800)
committer
Kishon Vijay Abraham I
<kishon@ti.com>
Tue, 10 Mar 2015 08:42:27 +0000
(14:12 +0530)
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>
drivers/phy/phy-miphy28lp.c
patch
|
blob
|
history
diff --git
a/drivers/phy/phy-miphy28lp.c
b/drivers/phy/phy-miphy28lp.c
index 9b2848e6115d44d050d7858ac75d01df60f71da3..174ffd037ef76089e16fa063aca2ebfd69754c65 100644
(file)
--- 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[] = {