Skip to content

Commit 59a99cd

Browse files
jwrdegoedesre
authored andcommitted
power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to stabilize
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: 740b755 ("bq27x00: Poll battery state") Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Sebastian Reichel <[email protected]>
1 parent 939a116 commit 59a99cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/power/supply/bq27xxx_battery.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2099,8 +2099,8 @@ static void bq27xxx_external_power_changed(struct power_supply *psy)
20992099
{
21002100
struct bq27xxx_device_info *di = power_supply_get_drvdata(psy);
21012101

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

21062106
int bq27xxx_battery_setup(struct bq27xxx_device_info *di)

0 commit comments

Comments
 (0)