Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: mxs-lradc: fix iio channel map regression

Since commit c8231a9af8147f8a ("iio: mxs-lradc: compute temperature
from channel 8 and 9") with the removal of adc channel 9 there is
no 1-1 mapping in the channel spec.

All hwmon channel values above 9 are accessible via there index minus
one. So add a hidden iio channel 9 to fix this issue.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Cc: Stable@vger.kernel.org
Signed-off-by: Jonathan Cameron <jic23@kernel.org>

authored by

Stefan Wahren and committed by
Jonathan Cameron
03305e53 19e353f2

+7
+7
drivers/staging/iio/adc/mxs-lradc.c
··· 1397 1397 .channel = 8, 1398 1398 .scan_type = {.sign = 'u', .realbits = 18, .storagebits = 32,}, 1399 1399 }, 1400 + /* Hidden channel to keep indexes */ 1401 + { 1402 + .type = IIO_TEMP, 1403 + .indexed = 1, 1404 + .scan_index = -1, 1405 + .channel = 9, 1406 + }, 1400 1407 MXS_ADC_CHAN(10, IIO_VOLTAGE), /* VDDIO */ 1401 1408 MXS_ADC_CHAN(11, IIO_VOLTAGE), /* VTH */ 1402 1409 MXS_ADC_CHAN(12, IIO_VOLTAGE), /* VDDA */