aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo+renesas@jmondi.org>2019-08-05 17:55:15 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2019-08-05 17:42:24 +0100
commitb9ddd5091160793ee9fac10da765cf3f53d2aaf0 (patch)
treeea5b484b9328fcd9c9379f1ac46f8c53093ac9e1 /drivers/iio
parentiio: frequency: adf4371: Fix output frequency setting (diff)
downloadlinux-dev-b9ddd5091160793ee9fac10da765cf3f53d2aaf0.tar.xz
linux-dev-b9ddd5091160793ee9fac10da765cf3f53d2aaf0.zip
iio: adc: max9611: Fix temperature reading in probe
The max9611 driver reads the die temperature at probe time to validate the communication channel. Use the actual read value to perform the test instead of the read function return value, which was mistakenly used so far. The temperature reading test was only successful because the 0 return value is in the range of supported temperatures. Fixes: 69780a3bbc0b ("iio: adc: Add Maxim max9611 ADC driver") Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org> Cc: <Stable@vger.kernel.org> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r--drivers/iio/adc/max9611.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/max9611.c b/drivers/iio/adc/max9611.c
index 0e3c6529fc4c..da073d72f649 100644
--- a/drivers/iio/adc/max9611.c
+++ b/drivers/iio/adc/max9611.c
@@ -480,7 +480,7 @@ static int max9611_init(struct max9611_dev *max9611)
if (ret)
return ret;
- regval = ret & MAX9611_TEMP_MASK;
+ regval &= MAX9611_TEMP_MASK;
if ((regval > MAX9611_TEMP_MAX_POS &&
regval < MAX9611_TEMP_MIN_NEG) ||