Message ID | 56951A2C.9010602@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi! > >>If not, tell me, and I can do it, but it will involve a lot of swaring... > > > >I'll give it a look over. > > OK, I'm still looking for a test setup, but this was definitely a problem, > could you give this a try?: Well, search no more. I tested it and seems to work ok. There's one more blank line in the source, so I had to apply patch by hand. Tested-by: Pavel Machek <pavel@ucw.cz> Acked-by: Pavel Machek <pavel@ucw.cz> Reported-by: Pavel Machek <pavel@ucw.cz> Cc: stable@vger.kernel.org ? :-). And... thanks! Pavel > diff --git a/drivers/power/bq27xxx_battery.c b/drivers/power/bq27xxx_battery.c > index 880233c..4fec3cf 100644 > --- a/drivers/power/bq27xxx_battery.c > +++ b/drivers/power/bq27xxx_battery.c > @@ -470,8 +470,9 @@ static inline int bq27xxx_read(struct bq27xxx_device_info *di, int reg_index, > static int bq27xxx_battery_read_soc(struct bq27xxx_device_info *di) > { > int soc; > + bool single = di->chip == BQ27000 || di->chip == BQ27010; > - soc = bq27xxx_read(di, BQ27XXX_REG_SOC, false); > + soc = bq27xxx_read(di, BQ27XXX_REG_SOC, single); > if (soc < 0) > dev_dbg(di->dev, "error reading State-of-Charge\n");
On Tuesday 12 January 2016 22:53:52 Pavel Machek wrote: > Hi! > > > >>If not, tell me, and I can do it, but it will involve a lot of swaring... > > > > > >I'll give it a look over. > > > > OK, I'm still looking for a test setup, but this was definitely a problem, > > could you give this a try?: > > Well, search no more. I tested it and seems to work ok. There's one > more blank line in the source, so I had to apply patch by hand. > > Tested-by: Pavel Machek <pavel@ucw.cz> > Acked-by: Pavel Machek <pavel@ucw.cz> > Reported-by: Pavel Machek <pavel@ucw.cz> > Cc: stable@vger.kernel.org > > ? :-). > > And... thanks! > Pavel There are more pending fixes for bq27xxx... Maybe your is duplicate? http://thread.gmane.org/gmane.linux.power-management.general/70090 http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=69714 http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=2110580 Sebastian, please take them and ideally send to stable@ for backporting. > > > diff --git a/drivers/power/bq27xxx_battery.c b/drivers/power/bq27xxx_battery.c > > index 880233c..4fec3cf 100644 > > --- a/drivers/power/bq27xxx_battery.c > > +++ b/drivers/power/bq27xxx_battery.c > > @@ -470,8 +470,9 @@ static inline int bq27xxx_read(struct bq27xxx_device_info *di, int reg_index, > > static int bq27xxx_battery_read_soc(struct bq27xxx_device_info *di) > > { > > int soc; > > + bool single = di->chip == BQ27000 || di->chip == BQ27010; > > - soc = bq27xxx_read(di, BQ27XXX_REG_SOC, false); > > + soc = bq27xxx_read(di, BQ27XXX_REG_SOC, single); > > if (soc < 0) > > dev_dbg(di->dev, "error reading State-of-Charge\n"); >
On Wed, Jan 13, 2016 at 09:44:24AM +0100, Pali Rohár wrote: > On Tuesday 12 January 2016 22:53:52 Pavel Machek wrote: > > Hi! > > > > > >>If not, tell me, and I can do it, but it will involve a lot of swaring... > > > > > > > >I'll give it a look over. > > > > > > OK, I'm still looking for a test setup, but this was definitely a problem, > > > could you give this a try?: > > > > Well, search no more. I tested it and seems to work ok. There's one > > more blank line in the source, so I had to apply patch by hand. > > > > Tested-by: Pavel Machek <pavel@ucw.cz> > > Acked-by: Pavel Machek <pavel@ucw.cz> > > Reported-by: Pavel Machek <pavel@ucw.cz> > > Cc: stable@vger.kernel.org > > > > ? :-). > > > > And... thanks! > > Pavel > > There are more pending fixes for bq27xxx... Maybe your is duplicate? No, it's not a duplicate. > http://thread.gmane.org/gmane.linux.power-management.general/70090 > http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=69714 > http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=2110580 > > Sebastian, please take them and ideally send to stable@ for backporting. There is no need to send them to stable@, if they are properly tagged with a 'Fixes: <sha1> ("title")' tag, so please always include it in your commit messages, if possible :) -- Sebastian
On Wednesday 13 January 2016 11:26:13 Sebastian Reichel wrote: > On Wed, Jan 13, 2016 at 09:44:24AM +0100, Pali Rohár wrote: > > On Tuesday 12 January 2016 22:53:52 Pavel Machek wrote: > > > Hi! > > > > > > > >>If not, tell me, and I can do it, but it will involve a lot of swaring... > > > > > > > > > >I'll give it a look over. > > > > > > > > OK, I'm still looking for a test setup, but this was definitely a problem, > > > > could you give this a try?: > > > > > > Well, search no more. I tested it and seems to work ok. There's one > > > more blank line in the source, so I had to apply patch by hand. > > > > > > Tested-by: Pavel Machek <pavel@ucw.cz> > > > Acked-by: Pavel Machek <pavel@ucw.cz> > > > Reported-by: Pavel Machek <pavel@ucw.cz> > > > Cc: stable@vger.kernel.org > > > > > > ? :-). > > > > > > And... thanks! > > > Pavel > > > > There are more pending fixes for bq27xxx... Maybe your is duplicate? > > No, it's not a duplicate. > > > http://thread.gmane.org/gmane.linux.power-management.general/70090 > > http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=69714 > > http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=2110580 Hm... It looks like Pavel's patch is subset of this 3rd patch as it fix function bq27xxx_battery_read_soc() > > Sebastian, please take them and ideally send to stable@ for backporting. > > There is no need to send them to stable@, if they are properly > tagged with a 'Fixes: <sha1> ("title")' tag, so please always > include it in your commit messages, if possible :) I have not sent those patches, but OK. In that email thread you can find sha1 commit id which broke it.
On Wed 2016-01-13 11:26:13, Sebastian Reichel wrote: > On Wed, Jan 13, 2016 at 09:44:24AM +0100, Pali Rohár wrote: > > On Tuesday 12 January 2016 22:53:52 Pavel Machek wrote: > > > Hi! > > > > > > > >>If not, tell me, and I can do it, but it will involve a lot of swaring... > > > > > > > > > >I'll give it a look over. > > > > > > > > OK, I'm still looking for a test setup, but this was definitely a problem, > > > > could you give this a try?: > > > > > > Well, search no more. I tested it and seems to work ok. There's one > > > more blank line in the source, so I had to apply patch by hand. > > > > > > Tested-by: Pavel Machek <pavel@ucw.cz> > > > Acked-by: Pavel Machek <pavel@ucw.cz> > > > Reported-by: Pavel Machek <pavel@ucw.cz> > > > Cc: stable@vger.kernel.org > > > > > > ? :-). > > > > > > And... thanks! > > > Pavel > > > > There are more pending fixes for bq27xxx... Maybe your is duplicate? > > No, it's not a duplicate. > > > http://thread.gmane.org/gmane.linux.power-management.general/70090 > > http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=69714 > > http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=2110580 > > > > Sebastian, please take them and ideally send to stable@ for backporting. > > There is no need to send them to stable@, if they are properly > tagged with a 'Fixes: <sha1> ("title")' tag, so please always > include it in your commit messages, if possible :) Heh, sorry about that, but I don't know what it fixed. I guess git blame would tell us. Anyway, http://thread.gmane.org/gmane.linux.power-management.general/69716/focus=2110580 fixed an regression in 4.4 kernel, and did not get to 4.4, which is rather sad :-(. Pavel
diff --git a/drivers/power/bq27xxx_battery.c b/drivers/power/bq27xxx_battery.c index 880233c..4fec3cf 100644 --- a/drivers/power/bq27xxx_battery.c +++ b/drivers/power/bq27xxx_battery.c @@ -470,8 +470,9 @@ static inline int bq27xxx_read(struct bq27xxx_device_info *di, int reg_index, static int bq27xxx_battery_read_soc(struct bq27xxx_device_info *di) { int soc; + bool single = di->chip == BQ27000 || di->chip == BQ27010; - soc = bq27xxx_read(di, BQ27XXX_REG_SOC, false); + soc = bq27xxx_read(di, BQ27XXX_REG_SOC, single); if (soc < 0) dev_dbg(di->dev, "error reading State-of-Charge\n");