diff options
author | Thomas Betker <thomas.betker@rohde-schwarz.com> | 2015-04-15 15:11:50 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-04-19 08:49:54 -0400 |
commit | 97ffae1d30c3f6ceee67d5b0d3e540c08c13c744 (patch) | |
tree | 43e5f8d6be608c740b89a2a7c4745e22059231c5 | |
parent | 00db4e52f4541965f7fda225eb458a75f892017b (diff) |
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>
-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[] = { | |||
997 | .num_event_specs = (_alarm) ? ARRAY_SIZE(xadc_voltage_events) : 0, \ | 997 | .num_event_specs = (_alarm) ? ARRAY_SIZE(xadc_voltage_events) : 0, \ |
998 | .scan_index = (_scan_index), \ | 998 | .scan_index = (_scan_index), \ |
999 | .scan_type = { \ | 999 | .scan_type = { \ |
1000 | .sign = 'u', \ | 1000 | .sign = ((_addr) == XADC_REG_VREFN) ? 's' : 'u', \ |
1001 | .realbits = 12, \ | 1001 | .realbits = 12, \ |
1002 | .storagebits = 16, \ | 1002 | .storagebits = 16, \ |
1003 | .shift = 4, \ | 1003 | .shift = 4, \ |