Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1491659 > unrolled thread
| Started by | Matt Ranostay <matt@ranostay.consulting> |
|---|---|
| First post | 2016-09-27 05:20 +0200 |
| Last post | 2016-09-27 05:20 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] power: supply: bq24910_charger: reset first_time check Matt Ranostay <matt@ranostay.consulting> - 2016-09-27 05:20 +0200
| From | Matt Ranostay <matt@ranostay.consulting> |
|---|---|
| Date | 2016-09-27 05:20 +0200 |
| Subject | Re: [PATCH] power: supply: bq24910_charger: reset first_time check |
| Message-ID | <slR61-4eM-7@gated-at.bofh.it> |
Hold off on this one. Currently reworking a patch series that won't need this change after all. On Thu, Sep 22, 2016 at 8:32 PM, Matt Ranostay <mranostay@gmail.com> wrote: > bq24190_register_reset() function needs to reset the bdi->first_time > condition every time to avoid spurious interrupts in suspend/resume. > > Signed-off-by: Matt Ranostay <matt@ranostay.consulting> > --- > drivers/power/supply/bq24190_charger.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/power/supply/bq24190_charger.c b/drivers/power/supply/bq24190_charger.c > index f5746b9f4e83..cc1dbdb1737f 100644 > --- a/drivers/power/supply/bq24190_charger.c > +++ b/drivers/power/supply/bq24190_charger.c > @@ -513,6 +513,8 @@ static int bq24190_register_reset(struct bq24190_dev_info *bdi) > int ret, limit = 100; > u8 v; > > + bdi->first_time = true; > + > /* Reset the registers */ > ret = bq24190_write_mask(bdi, BQ24190_REG_POC, > BQ24190_REG_POC_RESET_MASK, > @@ -1375,7 +1377,6 @@ static int bq24190_probe(struct i2c_client *client, > bdi->model = id->driver_data; > strncpy(bdi->model_name, id->name, I2C_NAME_SIZE); > mutex_init(&bdi->f_reg_lock); > - bdi->first_time = true; > bdi->charger_health_valid = false; > bdi->battery_health_valid = false; > bdi->battery_status_valid = false; > -- > 2.7.4 >
Back to top | Article view | linux.kernel
csiph-web