This is a note to let you know that I've just added the patch titled
twl4030-madc: Request processed values in twl4030_get_madc_conversion
to the 3.15-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
twl4030-madc-request-processed-values-in-twl4030_get_madc_conversion.patch
and it can be found in the queue-3.15 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From e0326be0cded13dfc3a24cbeece1f1ae64348a0e Mon Sep 17 00:00:00 2001
From: Paul Kocialkowski <[email protected]>
Date: Sat, 24 May 2014 13:09:00 +0100
Subject: twl4030-madc: Request processed values in twl4030_get_madc_conversion
From: Paul Kocialkowski <[email protected]>
commit e0326be0cded13dfc3a24cbeece1f1ae64348a0e upstream.
Not setting the raw parameter in the request causes it to be randomly
initialized to a value that might be different from zero or zero. This leads to
values that are randomly either raw or processed, making it very difficult to
make reliable use of the values.
Signed-off-by: Paul Kocialkowski <[email protected]>
Acked-by: Sebastian Reichel <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/iio/adc/twl4030-madc.c | 1 +
1 file changed, 1 insertion(+)
--- a/drivers/iio/adc/twl4030-madc.c
+++ b/drivers/iio/adc/twl4030-madc.c
@@ -645,6 +645,7 @@ int twl4030_get_madc_conversion(int chan
req.channels = (1 << channel_no);
req.method = TWL4030_MADC_SW2;
req.active = 0;
+ req.raw = 0;
req.func_cb = NULL;
ret = twl4030_madc_conversion(&req);
if (ret < 0)
Patches currently in stable-queue which might be from [email protected] are
queue-3.15/twl4030-madc-request-processed-values-in-twl4030_get_madc_conversion.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html