phy: Use PTR_ERR_OR_ZERO to fix warning raised by coccinelle
[deliverable/linux.git] / drivers / phy / phy-hix5hd2-sata.c
index a80ff9d7fe159491661f52569a10da2e19ec03c3..34915b4202f18c5249a059dd42aa914fee2e7f2d 100644 (file)
@@ -164,10 +164,7 @@ static int hix5hd2_sata_phy_probe(struct platform_device *pdev)
 
        phy_set_drvdata(phy, priv);
        phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
-       if (IS_ERR(phy_provider))
-               return PTR_ERR(phy_provider);
-
-       return 0;
+       return PTR_ERR_OR_ZERO(phy_provider);
 }
 
 static const struct of_device_id hix5hd2_sata_phy_of_match[] = {
This page took 0.024904 seconds and 5 git commands to generate.