mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
364eba4b3a
When we try to compile a clocksource driver with the COMPILE_TEST option, we can't select the GENERIC_SCHED_CLOCK because the sched_clock() symbol will be duplicated with the one defined for the x86. In order to fix that, we don't select the GENERIC_SCHED_CLOCK in the driver Kconfig's file but we define some empty functions for the different symbols in order to prevent the unresolved ones. This patch fixes the COMPILE_TEST option for the compile test coverage for the clocksource drivers. Without this patch, we can't add the COMPILE_TEST option for the clocksource drivers using the GENERIC_SCHED_CLOCK. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
26 lines
661 B
C
26 lines
661 B
C
/*
|
|
* sched_clock.h: support for extending counters to full 64-bit ns counter
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
#ifndef LINUX_SCHED_CLOCK
|
|
#define LINUX_SCHED_CLOCK
|
|
|
|
#ifdef CONFIG_GENERIC_SCHED_CLOCK
|
|
extern void sched_clock_postinit(void);
|
|
|
|
extern void sched_clock_register(u64 (*read)(void), int bits,
|
|
unsigned long rate);
|
|
#else
|
|
static inline void sched_clock_postinit(void) { }
|
|
|
|
static inline void sched_clock_register(u64 (*read)(void), int bits,
|
|
unsigned long rate)
|
|
{
|
|
;
|
|
}
|
|
#endif
|
|
|
|
#endif
|