Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 46547e0d authored by Todd Poynor's avatar Todd Poynor Committed by Ruchi Kandoi
Browse files

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: default avatarTodd Poynor <toddpoynor@google.com>
parent ca3f5491
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)