From: Aaro Koskinen Date: Wed, 10 Oct 2012 20:23:37 +0000 (+0300) Subject: watchdog: omap_wdt: eliminate goto X-Git-Tag: v3.8-rc1~1^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ba85387f0224dca9f0f9d783b09c9ceeb1c91bd;p=thirdparty%2Fkernel%2Flinux.git watchdog: omap_wdt: eliminate goto Eliminate a goto to simplify the code. Signed-off-by: Aaro Koskinen Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index 1474c2bd3077d..34ed61ea02b46 100644 --- a/drivers/watchdog/omap_wdt.c +++ b/drivers/watchdog/omap_wdt.c @@ -265,8 +265,10 @@ static int omap_wdt_probe(struct platform_device *pdev) omap_wdt_disable(wdev); ret = watchdog_register_device(omap_wdt); - if (ret) - goto err_register; + if (ret) { + pm_runtime_disable(wdev->dev); + return ret; + } pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n", __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF, @@ -275,11 +277,6 @@ static int omap_wdt_probe(struct platform_device *pdev) pm_runtime_put_sync(wdev->dev); return 0; - -err_register: - pm_runtime_disable(wdev->dev); - - return ret; } static void omap_wdt_shutdown(struct platform_device *pdev)