Skip to content

Commit

Permalink
fix temperature decimal place
Browse files Browse the repository at this point in the history
  • Loading branch information
bigsupersquid committed Jan 3, 2014
1 parent bb74ee4 commit 6963be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/power/msm_battery_thunderc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ static void msm_batt_update_psy_status(void)
/* LGE_CHANGE [dojip.kim@lge.com] 2010-06-03, [LS670]
* display the all info in unkown
*/
msm_batt_info.battery_temp = batt_info_buf.batt_temp; // * 10;
msm_batt_info.battery_temp = batt_info_buf.batt_temp * 10;

msm_batt_info.battery_therm = batt_info_buf.batt_therm;
/* LGE_CHANGES_E [woonghee.park@lge.com] */
Expand Down

0 comments on commit 6963be7

Please sign in to comment.