[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <3048a57d-1761-41c7-9528-ed722a8f77e9@roeck-us.net>
Date: Tue, 25 Apr 2023 20:53:03 -0700
From: Guenter Roeck <linux@...ck-us.net>
To: Xingyu Wu <xingyu.wu@...rfivetech.com>
Cc: linux-watchdog@...r.kernel.org,
Wim Van Sebroeck <wim@...ux-watchdog.org>,
Samin Guo <samin.guo@...rfivetech.com>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] watchdog: starfive: Fix the probe return error if PM
and early_enable are both disabled
On Wed, Apr 26, 2023 at 11:12:16AM +0800, Xingyu Wu wrote:
> When the starfive watchdog driver uses 'pm_runtime_put_sync()' as probe
> return value at last and 'early_enable' is disabled, it could return the
> error '-ENOSYS' if the CONFIG_PM is disabled, but the driver should works
> normally.
>
> Drop the 'return' and keep the 'pm_runtime_put_sync()', but do not use it
> as the return value.
>
> Fixes: db728ea9c7be ("drivers: watchdog: Add StarFive Watchdog driver")
> Signed-off-by: Xingyu Wu <xingyu.wu@...rfivetech.com>
Reviewed-by: Guenter Roeck <linux@...ck-us.net>
> ---
>
> Hi, Guenter and Wim,
>
> This patch fixes the issue of StarFive watchdog driver and rebases on
> the master branch of linux-next.
>
> Thanks.
>
> Changes since v1:
> - Dropped the check of PM and used the 'pm_runtime_put_sync()' directly.
>
> v1: https://lore.kernel.org/all/20230425100456.32718-1-xingyu.wu@starfivetech.com/
>
> ---
> drivers/watchdog/starfive-wdt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/watchdog/starfive-wdt.c b/drivers/watchdog/starfive-wdt.c
> index 1995cceca51e..8f378900624d 100644
> --- a/drivers/watchdog/starfive-wdt.c
> +++ b/drivers/watchdog/starfive-wdt.c
> @@ -492,7 +492,7 @@ static int starfive_wdt_probe(struct platform_device *pdev)
> goto err_exit;
>
> if (!early_enable)
> - return pm_runtime_put_sync(&pdev->dev);
> + pm_runtime_put_sync(&pdev->dev);
>
> return 0;
>
> --
> 2.25.1
>
Powered by blists - more mailing lists