* re: charger-manager: Modify the way of checking battery's temperature
@ 2014-01-07 7:39 Dan Carpenter
[not found] ` <20140107073951.GA17969-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2014-01-07 7:39 UTC (permalink / raw)
To: jonghwa3.lee-Sze3O3UU22JBDgjK7y7TUQ
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA, Anton Vorontsov
Hello Jonghwa Lee,
The patch 5c49a6256bed: "charger-manager: Modify the way of checking
battery's temperature" from Dec 18, 2013, leads to the following
static checker warning:
drivers/power/charger-manager.c:563 cm_get_battery_temperature()
warn: passing casted pointer 'temp' to 'thermal_zone_get_temp()' 32 vs 64.
drivers/power/charger-manager.c
554 static int cm_get_battery_temperature(struct charger_manager *cm,
555 int *temp)
556 {
557 int ret;
558
559 if (!cm->desc->measure_battery_temp)
560 return -ENODEV;
561
562 #ifdef CONFIG_THERMAL
563 ret = thermal_zone_get_temp(cm->tzd_batt, (unsigned long *)temp);
^^^^^^^^^^^^^^^^^^^^^^
This will corrupt memory on 64 bit systems.
564 if (!ret)
565 /* Calibrate temperature unit */
566 *temp /= 100;
567 #else
568 ret = cm->fuel_gauge->get_property(cm->fuel_gauge,
569 POWER_SUPPLY_PROP_TEMP,
570 (union power_supply_propval *)temp);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This will corrupt memory as well. Some of the callers pass an actual
32 bit integer and not a 64 bit union.
571 #endif
572 return ret;
573 }
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread[parent not found: <20140107073951.GA17969-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org>]
* Re: charger-manager: Modify the way of checking battery's temperature [not found] ` <20140107073951.GA17969-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org> @ 2014-01-07 8:05 ` jonghwa3.lee-Sze3O3UU22JBDgjK7y7TUQ 0 siblings, 0 replies; 2+ messages in thread From: jonghwa3.lee-Sze3O3UU22JBDgjK7y7TUQ @ 2014-01-07 8:05 UTC (permalink / raw) To: Dan Carpenter; +Cc: devicetree-u79uwXL29TY76Z2rM5mHXA, Anton Vorontsov Hi, On 2014년 01월 07일 16:39, Dan Carpenter wrote: > Hello Jonghwa Lee, > > The patch 5c49a6256bed: "charger-manager: Modify the way of checking > battery's temperature" from Dec 18, 2013, leads to the following > static checker warning: > > drivers/power/charger-manager.c:563 cm_get_battery_temperature() > warn: passing casted pointer 'temp' to 'thermal_zone_get_temp()' 32 vs 64. > > drivers/power/charger-manager.c > 554 static int cm_get_battery_temperature(struct charger_manager *cm, > 555 int *temp) > 556 { > 557 int ret; > 558 > 559 if (!cm->desc->measure_battery_temp) > 560 return -ENODEV; > 561 > 562 #ifdef CONFIG_THERMAL > 563 ret = thermal_zone_get_temp(cm->tzd_batt, (unsigned long *)temp); > ^^^^^^^^^^^^^^^^^^^^^^ > This will corrupt memory on 64 bit systems. > > 564 if (!ret) > 565 /* Calibrate temperature unit */ > 566 *temp /= 100; > 567 #else > 568 ret = cm->fuel_gauge->get_property(cm->fuel_gauge, > 569 POWER_SUPPLY_PROP_TEMP, > 570 (union power_supply_propval *)temp); > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > This will corrupt memory as well. Some of the callers pass an actual > 32 bit integer and not a 64 bit union. > > 571 #endif > 572 return ret; > 573 } > Sorry, I carelessly used typecasting. I'll clean these up. Thanks for advice. Thanks, Jonghwa > regards, > dan carpenter > > -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-07 8:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-07 7:39 charger-manager: Modify the way of checking battery's temperature Dan Carpenter
[not found] ` <20140107073951.GA17969-mgFCXtclrQlZLf2FXnZxJA@public.gmane.org>
2014-01-07 8:05 ` jonghwa3.lee-Sze3O3UU22JBDgjK7y7TUQ
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox