mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 23:51:37 +00:00
iio: amplifiers: ad8366: move channel init before iio_device_register()
Otherwise a race condition can occur, where userspace can start operations before the channels have been properly initialized. Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
55dda0abcf
commit
2636d00575
@ -161,12 +161,14 @@ static int ad8366_probe(struct spi_device *spi)
|
||||
indio_dev->channels = ad8366_channels;
|
||||
indio_dev->num_channels = ARRAY_SIZE(ad8366_channels);
|
||||
|
||||
ret = ad8366_write(indio_dev, 0 , 0);
|
||||
if (ret < 0)
|
||||
goto error_disable_reg;
|
||||
|
||||
ret = iio_device_register(indio_dev);
|
||||
if (ret)
|
||||
goto error_disable_reg;
|
||||
|
||||
ad8366_write(indio_dev, 0, 0);
|
||||
|
||||
return 0;
|
||||
|
||||
error_disable_reg:
|
||||
|
Loading…
Reference in New Issue
Block a user