All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] iio: adc: twl4030_madc: Fix calculation of the temperature sense current
@ 2015-05-28 19:50 Marek Belisko
  2015-05-28 19:50 ` [PATCH 2/2] iio: adc: twl4030_madc: Fix description of twl4030_madc_set_current_generator() Marek Belisko
  2015-06-07 16:25 ` [PATCH 1/2] iio: adc: twl4030_madc: Fix calculation of the temperature sense current Jonathan Cameron
  0 siblings, 2 replies; 4+ messages in thread
From: Marek Belisko @ 2015-05-28 19:50 UTC (permalink / raw)
  To: jic23; +Cc: linux-iio, linux-kernel, hns, Marek Belisko

From: "H. Nikolaus Schaller" <hns@goldelico.com>

The bit mask to read the setting of the constant current source
for measuring the NTC voltage was the wrong one. Since default
value is initialized to the lowest level (000 = 10uA) the difference
was probably never noticed in practice.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Signed-off-by: Marek Belisko <marek@goldelico.com>
---
 drivers/iio/adc/twl4030-madc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/adc/twl4030-madc.c b/drivers/iio/adc/twl4030-madc.c
index 94c5f05..6d2d429 100644
--- a/drivers/iio/adc/twl4030-madc.c
+++ b/drivers/iio/adc/twl4030-madc.c
@@ -235,7 +235,7 @@ static int twl4030battery_temperature(int raw_volt)
 	if (ret < 0)
 		return ret;
 
-	curr = ((val & TWL4030_BCI_ITHEN) + 1) * 10;
+	curr = ((val & TWL4030_BCI_ITHSENS) + 1) * 10;
 	/* Getting and calculating the thermistor resistance in ohms */
 	res = volt * 1000 / curr;
 	/* calculating temperature */
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-06-07 16:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-28 19:50 [PATCH 1/2] iio: adc: twl4030_madc: Fix calculation of the temperature sense current Marek Belisko
2015-05-28 19:50 ` [PATCH 2/2] iio: adc: twl4030_madc: Fix description of twl4030_madc_set_current_generator() Marek Belisko
2015-06-07 16:25 ` [PATCH 1/2] iio: adc: twl4030_madc: Fix calculation of the temperature sense current Jonathan Cameron
2015-06-07 16:33   ` Dr. H. Nikolaus Schaller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.