iio: amplifiers: hmc425a: Simplify with dev_err_probe()
[linux-2.6-microblaze.git] / drivers / iio / amplifiers / hmc425a.c
index 5827089..9efa692 100644 (file)
@@ -201,12 +201,9 @@ static int hmc425a_probe(struct platform_device *pdev)
        st->gain = st->chip_info->default_gain;
 
        st->gpios = devm_gpiod_get_array(&pdev->dev, "ctrl", GPIOD_OUT_LOW);
-       if (IS_ERR(st->gpios)) {
-               ret = PTR_ERR(st->gpios);
-               if (ret != -EPROBE_DEFER)
-                       dev_err(&pdev->dev, "failed to get gpios\n");
-               return ret;
-       }
+       if (IS_ERR(st->gpios))
+               return dev_err_probe(&pdev->dev, PTR_ERR(st->gpios),
+                                    "failed to get gpios\n");
 
        if (st->gpios->ndescs != st->chip_info->num_gpios) {
                dev_err(&pdev->dev, "%d GPIOs needed to operate\n",