summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorYang Yingliang <yangyingliang@huawei.com>2023-01-19 11:57:54 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-03-11 16:43:32 +0100
commit91ac4bf35ad60bcc46ec65936024dddab78c2c1d (patch)
tree613be9f096505e33a0328046613a5a2dc382a53e /arch/arm
parentaf3352c16efdb17b393f05be4bc14e5eb9c8f6df (diff)
ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init()
[ Upstream commit 0414a100d6ab32721efa70ab55524540fdfe0ede ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-omap1/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/timer.c b/arch/arm/mach-omap1/timer.c
index 4447210c9b0d..291bc376d30e 100644
--- a/arch/arm/mach-omap1/timer.c
+++ b/arch/arm/mach-omap1/timer.c
@@ -165,7 +165,7 @@ err_free_pdata:
kfree(pdata);
err_free_pdev:
- platform_device_unregister(pdev);
+ platform_device_put(pdev);
return ret;
}