On 01/08, Dan Carpenter wrote: > There is a copy and paste error so it accidentally returns ->convst_gpio > instead of ->reset_gpio. Fix it. > > Fixes: 0b76ff46c463 ("iio: adc: Add support for AD7091R-8") > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> > --- Oops, that also slipped through. Thanks for the fix. Reviewed-by: Marcelo Schmitt <marcelo.schmitt1@xxxxxxxxx> > drivers/iio/adc/ad7091r8.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/adc/ad7091r8.c b/drivers/iio/adc/ad7091r8.c > index 57700f124803..700564305057 100644 > --- a/drivers/iio/adc/ad7091r8.c > +++ b/drivers/iio/adc/ad7091r8.c > @@ -195,7 +195,7 @@ static int ad7091r8_gpio_setup(struct ad7091r_state *st) > st->reset_gpio = devm_gpiod_get_optional(st->dev, "reset", > GPIOD_OUT_HIGH); > if (IS_ERR(st->reset_gpio)) > - return dev_err_probe(st->dev, PTR_ERR(st->convst_gpio), > + return dev_err_probe(st->dev, PTR_ERR(st->reset_gpio), > "Error on requesting reset GPIO\n"); > > if (st->reset_gpio) { > -- > 2.42.0 > >