From: Naveen Kumar Chaudhary Date: Mon, 1 Jun 2026 03:57:46 +0000 (+0530) Subject: clockevents: Fix duplicate type specifier in stub function parameter X-Git-Tag: v7.1-rc7~2^2~3 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=c1ca14ca227e92101c7ae597213275b60f4212c6;p=thirdparty%2Fkernel%2Flinux.git clockevents: Fix duplicate type specifier in stub function parameter The stub for arch_inlined_clockevent_set_next_coupled() has 'u64 u64 cycles' in its parameter list. Since u64 is a typedef, the compiler parses the second 'u64' as the parameter name, making 'cycles' an unused token. Remove the duplicate so the parameter is correctly named. Fixes: 89f951a1e8ad ("clockevents: Provide support for clocksource coupled comparators") Signed-off-by: Naveen Kumar Chaudhary Signed-off-by: Thomas Gleixner Link: https://patch.msgid.link/7tostpvxzdn6tobmyow63a5rweatls5kux3scqp2vzhe7mv6uq@ecr746b4hyhf --- diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c index 5e22697b098d8..0014d163f989b 100644 --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c @@ -301,7 +301,7 @@ static int clockevents_program_min_delta(struct clock_event_device *dev) #include #else static __always_inline void -arch_inlined_clockevent_set_next_coupled(u64 u64 cycles, struct clock_event_device *dev) { } +arch_inlined_clockevent_set_next_coupled(u64 cycles, struct clock_event_device *dev) { } #endif static inline bool clockevent_set_next_coupled(struct clock_event_device *dev, ktime_t expires)