power: android_battery: nn.n temperature format for /d/android-power

Change-Id: I0c20effcadd3c0673d04be190133883b3c2bf599
Signed-off-by: Todd Poynor <toddpoynor@google.com>
This commit is contained in:
Todd Poynor
2012-08-06 18:18:31 -07:00
committed by Arve Hjønnevåg
parent b560612cf1
commit 4e792812de

View File

@@ -359,9 +359,10 @@ static int android_power_debug_dump(struct seq_file *s, void *unused)
struct android_bat_data *battery = s->private;
android_bat_update_data(battery);
seq_printf(s, "l=%d v=%d c=%d temp=%d h=%d st=%d type=%s\n",
seq_printf(s, "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,
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));