summaryrefslogtreecommitdiffstats
path: root/drivers/iio/humidity
diff options
context:
space:
mode:
authorMatt Ranostay2016-05-27 04:55:06 +0200
committerJonathan Cameron2016-05-29 20:45:54 +0200
commit09bc0ddaab6cab0fa95a67d5535ec772e2671193 (patch)
tree398c6449d0ec6541d760dce49362b480d1f1c661 /drivers/iio/humidity
parentiio:st_pressure: fix sampling gains (bring inline with ABI) (diff)
downloadkernel-qcow2-linux-09bc0ddaab6cab0fa95a67d5535ec772e2671193.tar.gz
kernel-qcow2-linux-09bc0ddaab6cab0fa95a67d5535ec772e2671193.tar.xz
kernel-qcow2-linux-09bc0ddaab6cab0fa95a67d5535ec772e2671193.zip
iio: humidity: hdc100x: fix IIO_TEMP channel reporting
IIO_TEMP channel was being incorrectly reported back as Celsius when it should have been milliCelsius. This is via an incorrect scale value being returned to userspace. Signed-off-by: Matt Ranostay <mranostay@gmail.com> Cc: <Stable@vger.kernel.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/humidity')
-rw-r--r--drivers/iio/humidity/hdc100x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/humidity/hdc100x.c b/drivers/iio/humidity/hdc100x.c
index 59aa1cbdc2fd..30709838dcdc 100644
--- a/drivers/iio/humidity/hdc100x.c
+++ b/drivers/iio/humidity/hdc100x.c
@@ -211,7 +211,7 @@ static int hdc100x_read_raw(struct iio_dev *indio_dev,
return IIO_VAL_INT_PLUS_MICRO;
case IIO_CHAN_INFO_SCALE:
if (chan->type == IIO_TEMP) {
- *val = 165;
+ *val = 165000;
*val2 = 65536 >> 2;
return IIO_VAL_FRACTIONAL;
} else {