aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-02-03 03:25:05 -0500
committerKishon Vijay Abraham I <kishon@ti.com>2014-03-01 13:56:26 -0500
commite4b9f782fe923e75cf47d369b770c49c33dfb39d (patch)
treecbe81a43fc80d5c2b3a433451818e53b3179cc96
parented093e6109865f8ee62c98fc002c04ae25fcd109 (diff)
usb: phy: bcm-kona-usb2: Use PTR_ERR_OR_ZERO
PTR_ERR_OR_ZERO simplifies the code. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Cc: Matt Porter <mporter@linaro.org> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r--drivers/phy/phy-bcm-kona-usb2.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/phy/phy-bcm-kona-usb2.c b/drivers/phy/phy-bcm-kona-usb2.c
index efc5c1a13a5d..e94f5a6a5645 100644
--- a/drivers/phy/phy-bcm-kona-usb2.c
+++ b/drivers/phy/phy-bcm-kona-usb2.c
@@ -128,10 +128,8 @@ static int bcm_kona_usb2_probe(struct platform_device *pdev)
128 128
129 phy_provider = devm_of_phy_provider_register(dev, 129 phy_provider = devm_of_phy_provider_register(dev,
130 of_phy_simple_xlate); 130 of_phy_simple_xlate);
131 if (IS_ERR(phy_provider))
132 return PTR_ERR(phy_provider);
133 131
134 return 0; 132 return PTR_ERR_OR_ZERO(phy_provider);
135} 133}
136 134
137static const struct of_device_id bcm_kona_usb2_dt_ids[] = { 135static const struct of_device_id bcm_kona_usb2_dt_ids[] = {