ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init()
authorYang Yingliang <yangyingliang@huawei.com>
Thu, 19 Jan 2023 09:57:54 +0000 (11:57 +0200)
committerTony Lindgren <tony@atomide.com>
Thu, 19 Jan 2023 09:57:57 +0000 (11:57 +0200)
If platform_device_add() is not called or failed, it should call
platform_device_put() in error case.

Fixes: 97933d6ced60 ("ARM: OMAP1: dmtimer: conversion to platform devices")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Message-Id: <20220701094602.2365099-1-yangyingliang@huawei.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap1/timer.c

index f5cd4bbf7566d7581a2d3062f198b5f8936e57ca..81a912c1145a914e123e29cee27600f822bfe689 100644 (file)
@@ -158,7 +158,7 @@ err_free_pdata:
        kfree(pdata);
 
 err_free_pdev:
-       platform_device_unregister(pdev);
+       platform_device_put(pdev);
 
        return ret;
 }