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

Commit 3f8e7072 authored by Hans de Goede's avatar Hans de Goede Committed by Greg Kroah-Hartman
Browse files

power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to stabilize



[ Upstream commit 59a99cd462fbdf71f4e845e09f37783035088b4f ]

bq27xxx_external_power_changed() gets called when the charger is plugged
in or out. Rather then immediately scheduling an update wait 0.5 seconds
for things to stabilize, so that e.g. the (dis)charge current is stable
when bq27xxx_battery_update() runs.

Fixes: 740b755a ("bq27x00: Poll battery state")
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent bf415bfe
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -1864,8 +1864,8 @@ static void bq27xxx_external_power_changed(struct power_supply *psy)
{
{
	struct bq27xxx_device_info *di = power_supply_get_drvdata(psy);
	struct bq27xxx_device_info *di = power_supply_get_drvdata(psy);


	cancel_delayed_work_sync(&di->work);
	/* After charger plug in/out wait 0.5s for things to stabilize */
	schedule_delayed_work(&di->work, 0);
	mod_delayed_work(system_wq, &di->work, HZ / 2);
}
}


int bq27xxx_battery_setup(struct bq27xxx_device_info *di)
int bq27xxx_battery_setup(struct bq27xxx_device_info *di)