Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1464526
| From | Sebastian Reichel <sre@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v5 1/7] power: act8945a_charger: Remove "battery_temperature" |
| Date | 2016-08-17 13:40 +0200 |
| Message-ID | <s77mp-pk-3@gated-at.bofh.it> (permalink) |
| References | <s6IHo-1dz-9@gated-at.bofh.it> <s6IHo-1dz-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
Hi,
On Tue, Aug 16, 2016 at 04:59:52PM +0800, Wenyou Yang wrote:
> [...]
>
> -static int act8945a_get_battery_health(struct act8945a_charger *charger,
> - struct regmap *regmap, int *val)
> +static int act8945a_get_battery_health(struct regmap *regmap, int *val)
> {
> int ret;
> unsigned int status;
> @@ -148,7 +146,7 @@ static int act8945a_get_battery_health(struct act8945a_charger *charger,
> if (ret < 0)
> return ret;
>
> - if (charger->battery_temperature && !(status & APCH_STATUS_TEMPDAT))
> + if (status & APCH_STATUS_TEMPDAT)
This incorrectly inverts the logic.
> *val = POWER_SUPPLY_HEALTH_OVERHEAT;
> else if (!(status & APCH_STATUS_INDAT))
> *val = POWER_SUPPLY_HEALTH_OVERVOLTAGE;
> @@ -188,8 +186,7 @@ static int act8945a_charger_get_property(struct power_supply *psy,
> val->intval = POWER_SUPPLY_TECHNOLOGY_LION;
> break;
> case POWER_SUPPLY_PROP_HEALTH:
> - ret = act8945a_get_battery_health(charger,
> - regmap, &val->intval);
> + ret = act8945a_get_battery_health(regmap, &val->intval);
> break;
> case POWER_SUPPLY_PROP_MODEL_NAME:
> val->strval = act8945a_charger_model;
> @@ -235,9 +232,6 @@ static int act8945a_charger_config(struct device *dev,
> return -EINVAL;
> }
>
> - charger->battery_temperature = of_property_read_bool(np,
> - "active-semi,check-battery-temperature");
> -
> chglev_pin = of_get_named_gpio_flags(np,
> "active-semi,chglev-gpios", 0, &flags);
-- Sebastian
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v5 1/7] power: act8945a_charger: Remove "battery_temperature" Wenyou Yang <wenyou.yang@atmel.com> - 2016-08-16 11:20 +0200 Re: [PATCH v5 1/7] power: act8945a_charger: Remove "battery_temperature" Sebastian Reichel <sre@kernel.org> - 2016-08-17 13:40 +0200
csiph-web