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: 89f951a1e8 ("clockevents: Provide support for clocksource coupled comparators")
Signed-off-by: Naveen Kumar Chaudhary <naveen.osdev@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Link: https://patch.msgid.link/7tostpvxzdn6tobmyow63a5rweatls5kux3scqp2vzhe7mv6uq@ecr746b4hyhf
This commit is contained in:
parent
e43ffb69e0
commit
c1ca14ca22
1 changed files with 1 additions and 1 deletions
|
|
@ -301,7 +301,7 @@ static int clockevents_program_min_delta(struct clock_event_device *dev)
|
|||
#include <asm/clock_inlined.h>
|
||||
#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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue