[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <7c20e9da-18df-8476-5029-9441cc7ebccf@roeck-us.net>
Date: Thu, 21 May 2020 05:57:20 -0700
From: Guenter Roeck <linux@...ck-us.net>
To: Dinghao Liu <dinghao.liu@....edu.cn>, kjlu@....edu
Cc: Wim Van Sebroeck <wim@...ux-watchdog.org>,
linux-watchdog@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] watchdog: Fix runtime PM imbalance on error
On 5/21/20 1:01 AM, Dinghao Liu wrote:
> When watchdog_register_device() returns an error code,
> a pairing runtime PM usage counter decrement is needed
> to keep the counter balanced.
>
> Signed-off-by: Dinghao Liu <dinghao.liu@....edu.cn>
Reviewed-by: Guenter Roeck <linux@...ck-us.net>
> ---
> drivers/watchdog/omap_wdt.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c
> index 9b91882fe3c4..1616f93dfad7 100644
> --- a/drivers/watchdog/omap_wdt.c
> +++ b/drivers/watchdog/omap_wdt.c
> @@ -273,6 +273,7 @@ static int omap_wdt_probe(struct platform_device *pdev)
>
> ret = watchdog_register_device(&wdev->wdog);
> if (ret) {
> + pm_runtime_put(wdev->dev);
> pm_runtime_disable(wdev->dev);
> return ret;
> }
>
Powered by blists - more mailing lists