You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
iio:adc: ad7766: testing the wrong variable in probe
We should be testing "ret" here.
Fixes: aa16c6bd0e ("iio:adc: Add support for AD7766/AD7767")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
committed by
Jonathan Cameron
parent
b548674ea7
commit
0d8391f3d6
@@ -239,8 +239,8 @@ static int ad7766_probe(struct spi_device *spi)
|
||||
|
||||
ret = devm_regulator_bulk_get(&spi->dev, ARRAY_SIZE(ad7766->reg),
|
||||
ad7766->reg);
|
||||
if (IS_ERR(ad7766->reg))
|
||||
return PTR_ERR(ad7766->reg);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ad7766->pd_gpio = devm_gpiod_get_optional(&spi->dev, "powerdown",
|
||||
GPIOD_OUT_HIGH);
|
||||
|
||||
Reference in New Issue
Block a user