2024-04-10 17:20:22

by Guenter Roeck

[permalink] [raw]
Subject: Re: [PATCH RESEND v8 06/10] watchdog: rzg2l_wdt: Remove comparison with zero

On Wed, Apr 10, 2024 at 04:40:40PM +0300, Claudiu wrote:
> From: Claudiu Beznea <[email protected]>
>
> devm_add_action_or_reset() could return -ENOMEM or zero. Thus, remove
> comparison with zero of the returning value to make code simpler.
>
> Signed-off-by: Claudiu Beznea <[email protected]>

Reviewed-by: Guenter Roeck <[email protected]>

> ---
>
> Changes in v8:
> - none
>
> Changes in v7:
> - none
>
> Changes in v6:
> - none
>
> Changes in v5:
> - none
>
> Changes in v4:
> - none
>
> Changes in v3:
> - none
>
> Changes in v2:
> - none
>
>
> drivers/watchdog/rzg2l_wdt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/watchdog/rzg2l_wdt.c b/drivers/watchdog/rzg2l_wdt.c
> index 93a49fd0c7aa..29eb47bcf984 100644
> --- a/drivers/watchdog/rzg2l_wdt.c
> +++ b/drivers/watchdog/rzg2l_wdt.c
> @@ -316,7 +316,7 @@ static int rzg2l_wdt_probe(struct platform_device *pdev)
>
> watchdog_set_drvdata(&priv->wdev, priv);
> ret = devm_add_action_or_reset(&pdev->dev, rzg2l_wdt_pm_disable, &priv->wdev);
> - if (ret < 0)
> + if (ret)
> return ret;
>
> watchdog_set_nowayout(&priv->wdev, nowayout);
> --
> 2.39.2
>