Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbdef9ba authored by kbuild test robot's avatar kbuild test robot Committed by Jonathan Cameron
Browse files

staging:iio:ad7606: fix ptr_ret.cocci warnings



drivers/staging/iio/adc/ad7606.c:357:1-3: WARNING: PTR_ERR_OR_ZERO can be used

 Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Generated by: scripts/coccinelle/api/ptr_ret.cocci

CC: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent a84a6a8a
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -354,10 +354,7 @@ static int ad7606_request_gpios(struct ad7606_state *st)

	st->gpio_os = devm_gpiod_get_array_optional(dev, "oversampling-ratio",
			GPIOD_OUT_LOW);
	if (IS_ERR(st->gpio_os))
		return PTR_ERR(st->gpio_os);

	return 0;
	return PTR_ERR_OR_ZERO(st->gpio_os);
}

/**