mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
bq24190_charger: Fix PM runtime use for bq24190_battery_set_property
commit075eb5719dupstream. There's a typo, it should do pm_runtime_get_sync, not put. Fixes:d7bf353fd0("bq24190_charger: Add support for TI BQ24190 Battery Charger") Cc: Mark A. Greer <mgreer@animalcreek.com> Signed-off-by: Tony Lindgren <tony@atomide.com> Reviewed-by: Mark Greer <mgreer@animalcreek.com> Signed-off-by: Sebastian Reichel <sre@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4b07d85374
commit
df386a0c28
@@ -1141,7 +1141,7 @@ static int bq24190_battery_set_property(struct power_supply *psy,
|
||||
|
||||
dev_dbg(bdi->dev, "prop: %d\n", psp);
|
||||
|
||||
pm_runtime_put_sync(bdi->dev);
|
||||
pm_runtime_get_sync(bdi->dev);
|
||||
|
||||
switch (psp) {
|
||||
case POWER_SUPPLY_PROP_ONLINE:
|
||||
|
||||
Reference in New Issue
Block a user