|
@@ -481,7 +481,7 @@ error_free_gpios:
|
|
|
if (!st->fixed_addr)
|
|
|
gpio_free_array(st->gpios, ARRAY_SIZE(st->gpios));
|
|
|
error_disable_reg:
|
|
|
- if (!IS_ERR_OR_NULL(st->reg))
|
|
|
+ if (!IS_ERR(st->reg))
|
|
|
regulator_disable(st->reg);
|
|
|
|
|
|
return ret;
|
|
@@ -496,7 +496,7 @@ static int ad7266_remove(struct spi_device *spi)
|
|
|
iio_triggered_buffer_cleanup(indio_dev);
|
|
|
if (!st->fixed_addr)
|
|
|
gpio_free_array(st->gpios, ARRAY_SIZE(st->gpios));
|
|
|
- if (!IS_ERR_OR_NULL(st->reg))
|
|
|
+ if (!IS_ERR(st->reg))
|
|
|
regulator_disable(st->reg);
|
|
|
|
|
|
return 0;
|