mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
power: android-battery: use 1/10th deg C units for temperature
Same units as power_supply, don't need 1/10000 deg C and conversion is error-prone. Change-Id: I8cf146d2a7725df2dacc415daa66b2986b69f2a7 Signed-off-by: Todd Poynor <toddpoynor@google.com>
This commit is contained in:
@@ -188,7 +188,7 @@ static int android_ac_get_property(struct power_supply *ps,
|
||||
|
||||
static void android_bat_get_temp(struct android_bat_data *battery)
|
||||
{
|
||||
int batt_temp = 42000; /* 4.2C */
|
||||
int batt_temp = 42; /* 4.2C */
|
||||
int health = battery->batt_health;
|
||||
|
||||
if (battery->pdata->get_temperature)
|
||||
@@ -219,7 +219,7 @@ static void android_bat_get_temp(struct android_bat_data *battery)
|
||||
}
|
||||
}
|
||||
|
||||
battery->batt_temp = batt_temp/1000;
|
||||
battery->batt_temp = batt_temp;
|
||||
}
|
||||
|
||||
static void android_bat_update_data(struct android_bat_data *battery)
|
||||
|
||||
Reference in New Issue
Block a user