diff options
author | Andrew F. Davis <afd@ti.com> | 2016-05-01 15:36:55 -0500 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-05-04 11:03:01 +0100 |
commit | 9d3d9a57e4242b155b965f58639a230b212a0ea5 (patch) | |
tree | e2773737866262f54ed54623834ab4b70bae5dcf /drivers/iio/health | |
parent | 81f517270da632c0ddf4c511a086d5aa7e5606ee (diff) | |
download | linux-9d3d9a57e4242b155b965f58639a230b212a0ea5.tar.bz2 |
iio: health/afe440x: Fix scan_index assignment
The LED channels are not scannable and so scan_index should
be negative, fix this here.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/health')
-rw-r--r-- | drivers/iio/health/afe440x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/health/afe440x.h b/drivers/iio/health/afe440x.h index 544bbabd6321..583d071af11d 100644 --- a/drivers/iio/health/afe440x.h +++ b/drivers/iio/health/afe440x.h @@ -125,7 +125,7 @@ struct afe440x_reg_info { .type = IIO_CURRENT, \ .channel = _index, \ .address = _index, \ - .scan_index = _index, \ + .scan_index = -1, \ .extend_name = _name, \ .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \ BIT(IIO_CHAN_INFO_SCALE), \ |