lkml.org 
[lkml]   [2019]   [Dec]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2] power: reset: gpio-restart: don't error on deferral
Hi,

On Wed, Oct 30, 2019 at 09:17:26AM +1300, Chris Packham wrote:
> Don't generate an error message when devm_gpiod_get fails with
> -EPROBE_DEFER.
>
> Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
> ---

Thanks, queued to power-supply's for-next branch.

-- Sebastian

>
> Notes:
> Changes in v2:
> - use PTR_ERR_OR_ZERO() to avoid excessive PTR_ERR()
>
> drivers/power/reset/gpio-restart.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/power/reset/gpio-restart.c b/drivers/power/reset/gpio-restart.c
> index 308ca9d9d276..5466eeea261c 100644
> --- a/drivers/power/reset/gpio-restart.c
> +++ b/drivers/power/reset/gpio-restart.c
> @@ -64,9 +64,11 @@ static int gpio_restart_probe(struct platform_device *pdev)
>
> gpio_restart->reset_gpio = devm_gpiod_get(&pdev->dev, NULL,
> open_source ? GPIOD_IN : GPIOD_OUT_LOW);
> - if (IS_ERR(gpio_restart->reset_gpio)) {
> - dev_err(&pdev->dev, "Could not get reset GPIO\n");
> - return PTR_ERR(gpio_restart->reset_gpio);
> + ret = PTR_ERR_OR_ZERO(gpio_restart->reset_gpio);
> + if (ret) {
> + if (ret != -EPROBE_DEFER)
> + dev_err(&pdev->dev, "Could not get reset GPIO\n");
> + return ret;
> }
>
> gpio_restart->restart_handler.notifier_call = gpio_restart_notify;
> --
> 2.23.0
>
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2019-12-19 01:17    [W:0.068 / U:0.204 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site