diff options
author | Thomas Betker <thomas.betker@rohde-schwarz.com> | 2015-04-15 21:11:50 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-04-19 13:49:54 +0100 |
commit | 97ffae1d30c3f6ceee67d5b0d3e540c08c13c744 (patch) | |
tree | 43e5f8d6be608c740b89a2a7c4745e22059231c5 /drivers | |
parent | 00db4e52f4541965f7fda225eb458a75f892017b (diff) | |
download | linux-stable-97ffae1d30c3f6ceee67d5b0d3e540c08c13c744.tar.gz linux-stable-97ffae1d30c3f6ceee67d5b0d3e540c08c13c744.tar.bz2 linux-stable-97ffae1d30c3f6ceee67d5b0d3e540c08c13c744.zip |
iio: adc: xilinx: Fix VREFN sign
The VREFN channel is bipolar, not unipolar. Small negative values do
occur (e.g., -1mV), and unsigned conversion maps them incorrectly to
large positive values (about +1V), so fix this.
Signed-off-by: Thomas Betker <thomas.betker@rohde-schwarz.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/iio/adc/xilinx-xadc-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/xilinx-xadc-core.c b/drivers/iio/adc/xilinx-xadc-core.c index 6fa629b3c168..ce93bd8e3f68 100644 --- a/drivers/iio/adc/xilinx-xadc-core.c +++ b/drivers/iio/adc/xilinx-xadc-core.c @@ -997,7 +997,7 @@ static const struct iio_event_spec xadc_voltage_events[] = { .num_event_specs = (_alarm) ? ARRAY_SIZE(xadc_voltage_events) : 0, \ .scan_index = (_scan_index), \ .scan_type = { \ - .sign = 'u', \ + .sign = ((_addr) == XADC_REG_VREFN) ? 's' : 'u', \ .realbits = 12, \ .storagebits = 16, \ .shift = 4, \ |