[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <201304081250.38814@pali>
Date: Mon, 8 Apr 2013 12:50:38 +0200
From: Pali Rohár <pali.rohar@...il.com>
To: Anton Vorontsov <anton@...msg.org>
Cc: David Woodhouse <dwmw2@...radead.org>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] power: rx51_battery: Fix reporting temperature
On Thursday 28 March 2013 17:42:23 Pali Rohár wrote:
> This patch fixing units (1/10 °C) in which is temperature
> reported.
>
> Signed-off-by: Pali Rohár <pali.rohar@...il.com>
> ---
> drivers/power/rx51_battery.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/power/rx51_battery.c
> b/drivers/power/rx51_battery.c index 8208888..527d256 100644
> --- a/drivers/power/rx51_battery.c
> +++ b/drivers/power/rx51_battery.c
> @@ -119,7 +119,7 @@ static int
> rx51_battery_read_temperature(struct rx51_device_info *di)
>
> /* First check for temperature in first direct table */
> if (raw < ARRAY_SIZE(rx51_temp_table1))
> - return rx51_temp_table1[raw] * 100;
> + return rx51_temp_table1[raw] * 10;
>
> /* Binary search RAW value in second inverse table */
> while (max - min > 1) {
> @@ -132,7 +132,7 @@ static int
> rx51_battery_read_temperature(struct rx51_device_info *di)
> break;
> }
>
> - return (rx51_temp_table2_first - min) * 100;
> + return (rx51_temp_table2_first - min) * 10;
> }
>
> /*
Hi Anton, please include this patch into your battery tree.
--
Pali Rohár
pali.rohar@...il.com
Download attachment "signature.asc " of type "application/pgp-signature" (199 bytes)
Powered by blists - more mailing lists