Message ID | 20170207160157.GA21809@atomide.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On Tue, Feb 7, 2017 at 8:01 AM, Tony Lindgren <tony@atomide.com> wrote: > * Liam Breck <liam@networkimprov.net> [170203 16:25]: >> On Fri, Feb 3, 2017 at 1:17 PM, Tony Lindgren <tony@atomide.com> wrote: >> > static int bq24190_remove(struct i2c_client *client) >> > { >> > struct bq24190_dev_info *bdi = i2c_get_clientdata(client); >> > + int error; >> > >> > - pm_runtime_get_sync(bdi->dev); >> > - bq24190_register_reset(bdi); >> > - pm_runtime_put_sync(bdi->dev); >> > + error = pm_runtime_get_sync(bdi->dev); >> > + if (error < 0) { >> > + dev_warn(bdi->dev, "pm_runtime_get failed: %i\n", error); >> > + pm_runtime_put_noidle(bdi->dev); >> > + } >> > >> > + bq24190_register_reset(bdi); >> > bq24190_sysfs_remove_group(bdi); >> > power_supply_unregister(bdi->battery); >> > power_supply_unregister(bdi->charger); >> > + pm_runtime_put_sync(bdi->dev); >> > + pm_runtime_dont_use_autosuspend(bdi->dev); >> > pm_runtime_disable(bdi->dev); >> >> I think you addressed this, but should the above be >> >> if (!error) >> pm_runtime_put_sync(bdi->dev); > > Hmm yeah.. But we need to check for if (error >= 0), also in the other > places see below. OK, let's roll v4. it is Acked-by: Liam Breck <kernel@networkimprov.net> (and pls include the v4 in all subjects :-) I have a patchset for DT support in the works which depends on this one. -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/power/supply/bq24190_charger.c b/drivers/power/supply/bq24190_charger.c --- a/drivers/power/supply/bq24190_charger.c +++ b/drivers/power/supply/bq24190_charger.c @@ -1487,7 +1487,8 @@ static int bq24190_remove(struct i2c_client *client) bq24190_sysfs_remove_group(bdi); power_supply_unregister(bdi->battery); power_supply_unregister(bdi->charger); - pm_runtime_put_sync(bdi->dev); + if (error >= 0) + pm_runtime_put_sync(bdi->dev); pm_runtime_dont_use_autosuspend(bdi->dev); pm_runtime_disable(bdi->dev); @@ -1541,7 +1542,7 @@ static int bq24190_pm_suspend(struct device *dev) bq24190_register_reset(bdi); - if (!error) { + if (error >= 0) { pm_runtime_mark_last_busy(bdi->dev); pm_runtime_put_autosuspend(bdi->dev); } @@ -1568,7 +1569,7 @@ static int bq24190_pm_resume(struct device *dev) bq24190_set_mode_host(bdi); bq24190_read(bdi, BQ24190_REG_SS, &bdi->ss_reg); - if (!error) { + if (error >= 0) { pm_runtime_mark_last_busy(bdi->dev); pm_runtime_put_autosuspend(bdi->dev); }