diff mbox

[v2] thermal: consistently use int for temperatures

Message ID 20150723103758.GI18700@pengutronix.de (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Sascha Hauer July 23, 2015, 10:37 a.m. UTC
Hi Zhang,

On Tue, Jul 21, 2015 at 01:35:31PM +0000, Zhang, Rui wrote:
> > >
> Patch applied.

Thanks for applying. I missed to convert another place, so we get a new
compiler warning. The attached patch fixes this (suitable for git rebase
--autosquash). Please let me know if you can handle this or if you
prefer a new patch instead.

Thanks
 Sascha


-----------------------------8<-------------------------------------

From 4907a7c32fd16eaf9f31d9f904276c9a0176b717 Mon Sep 17 00:00:00 2001
From: Sascha Hauer <s.hauer@pengutronix.de>
Date: Thu, 23 Jul 2015 12:32:31 +0200
Subject: [PATCH] fixup! thermal: consistently use int for temperatures
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

fixes:
drivers/power/charger-manager.c: In function ‘cm_get_battery_temperature’:
drivers/power/charger-manager.c:622:45: warning: passing argument 2 of ‘thermal_zone_get_temp’ from incompatible pointer type
   ret = thermal_zone_get_temp(cm->tzd_batt, (unsigned long *)temp);

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 drivers/power/charger-manager.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Zhang, Rui July 24, 2015, 1:31 a.m. UTC | #1
As the original patch has not been in upstream, I'd prefer a refreshed patch, rather than an incremental fix.

Thanks,
rui

> -----Original Message-----

> From: Sascha Hauer [mailto:s.hauer@pengutronix.de]

> Sent: Thursday, July 23, 2015 6:38 PM

> To: Zhang, Rui

> Cc: Punit Agrawal; linux-pm@vger.kernel.org; Eduardo Valentin; linux-

> kernel@vger.kernel.org; Jean Delvare; Peter Feuerer; Heiko Stuebner;

> Lukasz Majewski; Stephen Warren; Thierry Reding; linux-

> acpi@vger.kernel.org; platform-driver-x86@vger.kernel.org; linux-arm-

> kernel@lists.infradead.org; linux-omap@vger.kernel.org; linux-samsung-

> soc@vger.kernel.org; Guenter Roeck; Rafael J. Wysocki; Maxime Ripard;

> Darren Hart; lm-sensors@lm-sensors.org

> Subject: Re: [PATCH v2] thermal: consistently use int for temperatures

> Importance: High

> 

> Hi Zhang,

> 

> On Tue, Jul 21, 2015 at 01:35:31PM +0000, Zhang, Rui wrote:

> > > >

> > Patch applied.

> 

> Thanks for applying. I missed to convert another place, so we get a new

> compiler warning. The attached patch fixes this (suitable for git rebase --

> autosquash). Please let me know if you can handle this or if you prefer a new

> patch instead.

> 

> Thanks

>  Sascha

> 

> 

> -----------------------------8<-------------------------------------

> 

> From 4907a7c32fd16eaf9f31d9f904276c9a0176b717 Mon Sep 17 00:00:00 2001

> From: Sascha Hauer <s.hauer@pengutronix.de>

> Date: Thu, 23 Jul 2015 12:32:31 +0200

> Subject: [PATCH] fixup! thermal: consistently use int for temperatures

> MIME-Version: 1.0

> Content-Type: text/plain; charset=UTF-8

> Content-Transfer-Encoding: 8bit

> 

> fixes:

> drivers/power/charger-manager.c: In function

> ‘cm_get_battery_temperature’:

> drivers/power/charger-manager.c:622:45: warning: passing argument 2 of

> ‘thermal_zone_get_temp’ from incompatible pointer type

>    ret = thermal_zone_get_temp(cm->tzd_batt, (unsigned long *)temp);

> 

> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>

> ---

>  drivers/power/charger-manager.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

> 

> diff --git a/drivers/power/charger-manager.c b/drivers/power/charger-

> manager.c index 1c202cc..907293e 100644

> --- a/drivers/power/charger-manager.c

> +++ b/drivers/power/charger-manager.c

> @@ -619,7 +619,7 @@ static int cm_get_battery_temperature(struct

> charger_manager *cm,

> 

>  #ifdef CONFIG_THERMAL

>  	if (cm->tzd_batt) {

> -		ret = thermal_zone_get_temp(cm->tzd_batt, (unsigned long

> *)temp);

> +		ret = thermal_zone_get_temp(cm->tzd_batt, temp);

>  		if (!ret)

>  			/* Calibrate temperature unit */

>  			*temp /= 100;

> --

> 2.1.4

> 

> 

> --

> Pengutronix e.K.                           |                             |

> Industrial Linux Solutions                 | http://www.pengutronix.de/  |

> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |

> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
diff mbox

Patch

diff --git a/drivers/power/charger-manager.c b/drivers/power/charger-manager.c
index 1c202cc..907293e 100644
--- a/drivers/power/charger-manager.c
+++ b/drivers/power/charger-manager.c
@@ -619,7 +619,7 @@  static int cm_get_battery_temperature(struct charger_manager *cm,
 
 #ifdef CONFIG_THERMAL
 	if (cm->tzd_batt) {
-		ret = thermal_zone_get_temp(cm->tzd_batt, (unsigned long *)temp);
+		ret = thermal_zone_get_temp(cm->tzd_batt, temp);
 		if (!ret)
 			/* Calibrate temperature unit */
 			*temp /= 100;