Skip to content

Commit a225737

Browse files
dinghaoliuWim Van Sebroeck
authored andcommitted
watchdog: Fix runtime PM imbalance on error
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@zju.edu.cn> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20200521080141.24373-1-dinghao.liu@zju.edu.cn Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
1 parent 5e31896 commit a225737

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/watchdog/omap_wdt.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ static int omap_wdt_probe(struct platform_device *pdev)
273273

274274
ret = watchdog_register_device(&wdev->wdog);
275275
if (ret) {
276+
pm_runtime_put(wdev->dev);
276277
pm_runtime_disable(wdev->dev);
277278
return ret;
278279
}

0 commit comments

Comments
 (0)