From: Pali Rohár Date: Fri, 15 Feb 2013 22:56:50 +0000 (+0100) Subject: power: rx51_battery: Fix reporting correct values X-Git-Tag: v3.10-rc1~86^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8059c1c6be45973ea72342567a6ede5f4f0bf8e7;p=platform%2Fkernel%2Flinux-3.10.git power: rx51_battery: Fix reporting correct values Tell twl4030_madc_conversion that this driver needs raw values. Driver twl4030_madc has some hardcoded values and conversation functions which are incorrect for Nokia RX-51 board. This driver rx51_battery expects raw values which convert itself. This patch fixing values reported by power supply interface. Before this patch driver reported always incorrect values on 3.8 kernel (sometimes design capacity was negative). Signed-off-by: Pali Rohár Acked-by: Anton Vorontsov Signed-off-by: Samuel Ortiz --- diff --git a/drivers/power/rx51_battery.c b/drivers/power/rx51_battery.c index 8208888..35f625e 100644 --- a/drivers/power/rx51_battery.c +++ b/drivers/power/rx51_battery.c @@ -42,6 +42,7 @@ static int rx51_battery_read_adc(int channel) req.method = TWL4030_MADC_SW1; req.func_cb = NULL; req.type = TWL4030_MADC_WAIT; + req.raw = true; if (twl4030_madc_conversion(&req) <= 0) return -ENODATA;