Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: sre@kernel.org (Sebastian Reichel)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v8 07/11] power: act8945a_charger: Add capacity level property
Date: Wed, 31 Aug 2016 16:56:23 +0200	[thread overview]
Message-ID: <20160831145622.a5pmhddb5fqpzy5z@earth> (raw)
In-Reply-To: <1472109599-21915-8-git-send-email-wenyou.yang@atmel.com>

Hi,

On Thu, Aug 25, 2016 at 03:19:55PM +0800, Wenyou Yang wrote:
> Add the power supply capacity level property, it corresponds to
> POWER_SUPPLY_CAPACITY_LEVEL_*.
> 
> It also utilizes the precision voltage detector function module
> to catch the low battery voltage.

[...]

> diff --git a/drivers/power/supply/Kconfig b/drivers/power/supply/Kconfig
> index 76806a0..a983de2 100644
> --- a/drivers/power/supply/Kconfig
> +++ b/drivers/power/supply/Kconfig
> @@ -77,7 +77,7 @@ config BATTERY_88PM860X
>  
>  config BATTERY_ACT8945A
>  	tristate "Active-semi ACT8945A charger driver"
> -	depends on MFD_ACT8945A || COMPILE_TEST
> +	depends on MFD_ACT8945A || GPIOLIB || COMPILE_TEST

This looks wrong. You probably wanted (MFD_ACT8945A && GPIOLIB).
But since the gpio consumer headers defines stubs for the !GPIOLIB
case just drop the dependency.

>  	help
>  	  Say Y here to enable support for power supply provided by
>  	  Active-semi ActivePath ACT8945A charger.

[...]

> +	charger->lbo_gpio = devm_gpiod_get(dev, "active-semi,lbo", GPIOD_IN);
> +	if (PTR_ERR(charger->lbo_gpio) == -EPROBE_DEFER) {
> +		dev_info(dev, "probe retry requested for gpio \"lbo\"\n");
> +		return -EPROBE_DEFER;
> +	} else if (IS_ERR(charger->lbo_gpio)) {
> +		dev_err(dev, "unable to claim gpio \"lbo\"\n");
> +		charger->lbo_gpio = NULL;
> +	}

Please use devm_gpiod_get_optional():

charger->lbo_gpio = devm_gpiod_get_optional(dev, "active-semi,lbo", GPIOD_IN);
if (IS_ERR(charger->lbo_gpio)) {
    err = PTR_ERR(charger->lbo_gpio)
    dev_err(dev, "unable to claim gpio \"lbo\": %ld\n", err);
    return err;
}

-- Sebastian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160831/c9e51b66/attachment.sig>

  reply	other threads:[~2016-08-31 14:56 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-25  7:19 [PATCH v8 00/11] power: act8945a_charger: Improvements Wenyou Yang
2016-08-25  7:19 ` [PATCH v8 01/11] mfd: act8945a: Add .of_compatible for act8945a-charger Wenyou Yang
2016-08-31 12:28   ` Lee Jones
2016-08-25  7:19 ` [PATCH v8 02/11] power: act8945a_charger: Achieve properties from its node Wenyou Yang
2016-08-31 14:44   ` Sebastian Reichel
2016-08-25  7:19 ` [PATCH v8 03/11] power: act8945a_charger: Remove "battery_temperature" Wenyou Yang
2016-08-31 14:45   ` Sebastian Reichel
2016-08-25  7:19 ` [PATCH v8 04/11] power: act8945a_charger: Improve Wenyou Yang
2016-08-31 14:45   ` Sebastian Reichel
2016-08-25  7:19 ` [PATCH v8 05/11] power: act8945a_charger: Add status change update support Wenyou Yang
2016-08-31 14:45   ` Sebastian Reichel
2016-08-25  7:19 ` [PATCH v8 06/11] power: act8945a_charger: Fix the power supply type Wenyou Yang
2016-08-31 14:47   ` Sebastian Reichel
2016-08-25  7:19 ` [PATCH v8 07/11] power: act8945a_charger: Add capacity level property Wenyou Yang
2016-08-31 14:56   ` Sebastian Reichel [this message]
2016-08-25  7:19 ` [PATCH v8 08/11] power: act8945a_charger: Add max current property Wenyou Yang
2016-08-31 14:58   ` Sebastian Reichel
2016-08-25  7:38 ` [PATCH v8 09/11] doc: bindings: mfd: act8945a: Update the example Wenyou Yang
2016-08-30 19:52   ` Rob Herring
2016-08-31 14:50   ` Sebastian Reichel
2016-08-25  7:40 ` [PATCH v8 10/11] doc: bindings: power: act8945a-charger: Update properties Wenyou Yang
2016-08-31 14:48   ` Sebastian Reichel
2016-08-25  7:45 ` [PATCH v8 11/11] ARM: at91/dt: sama5d2_xplained: Add act8945a-charger node Wenyou Yang
2016-08-25  8:59 ` [PATCH v8 00/11] power: act8945a_charger: Improvements Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160831145622.a5pmhddb5fqpzy5z@earth \
    --to=sre@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox