regulator: vexpress: Use PTR_ERR_OR_ZERO() to simplify code
[linux-2.6-microblaze.git] / drivers / regulator / vexpress-regulator.c
index 1235f46..5d39663 100644 (file)
@@ -75,10 +75,7 @@ static int vexpress_regulator_probe(struct platform_device *pdev)
        config.of_node = pdev->dev.of_node;
 
        rdev = devm_regulator_register(&pdev->dev, desc, &config);
-       if (IS_ERR(rdev))
-               return PTR_ERR(rdev);
-
-       return 0;
+       return PTR_ERR_OR_ZERO(rdev);
 }
 
 static const struct of_device_id vexpress_regulator_of_match[] = {