mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 04:10:18 +09:00
power: android_battery: fix negative temperature display
Change-Id: Ic9798bc5194b6192fec726a8f136867f111e4765 Signed-off-by: Todd Poynor <toddpoynor@google.com>
This commit is contained in:
@@ -330,11 +330,11 @@ static void android_bat_monitor_work(struct work_struct *work)
|
||||
break;
|
||||
}
|
||||
|
||||
pr_info("battery: l=%d v=%d c=%d temp=%d.%d h=%d st=%d type=%s\n",
|
||||
pr_info("battery: l=%d v=%d c=%d temp=%s%ld.%ld h=%d st=%d type=%s\n",
|
||||
battery->batt_soc, battery->batt_vcell/1000,
|
||||
battery->batt_current, battery->batt_temp / 10,
|
||||
battery->batt_temp % 10, battery->batt_health,
|
||||
battery->charging_status,
|
||||
battery->batt_current, battery->batt_temp < 0 ? "-" : "",
|
||||
abs(battery->batt_temp / 10), abs(battery->batt_temp % 10),
|
||||
battery->batt_health, battery->charging_status,
|
||||
charge_source_str(battery->charge_source));
|
||||
power_supply_changed(&battery->psy_bat);
|
||||
battery->last_poll = ktime_get_boottime();
|
||||
|
||||
Reference in New Issue
Block a user