From f3539a6a6998e1e662fdb30af435f239d5931c98 Mon Sep 17 00:00:00 2001 From: Li kunyu Date: Fri, 5 Jul 2024 13:21:59 +0800 Subject: [PATCH] =?utf8?q?clocksource/driver/arm=5Fglobal=5Ftimer:=20Remov?= =?utf8?q?e=20unnecessary=20=E2=80=980=E2=80=99=20values=20from=20err?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The 'err' variable is initialized whatever the code path, it is pointless to initialize it when it is declared. Signed-off-by: Li kunyu Link: https://lore.kernel.org/r/20240705052159.22235-1-kunyu@nfschina.com Signed-off-by: Daniel Lezcano --- drivers/clocksource/arm_global_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clocksource/arm_global_timer.c b/drivers/clocksource/arm_global_timer.c index ab1c8c2b66b8..a05cfaab5f84 100644 --- a/drivers/clocksource/arm_global_timer.c +++ b/drivers/clocksource/arm_global_timer.c @@ -343,7 +343,7 @@ static int __init global_timer_of_register(struct device_node *np) { struct clk *gt_clk; static unsigned long gt_clk_rate; - int err = 0; + int err; /* * In A9 r2p0 the comparators for each processor with the global timer -- 2.25.1