diff options
Diffstat (limited to 'kernel/sched/clock.c')
| -rw-r--r-- | kernel/sched/clock.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/kernel/sched/clock.c b/kernel/sched/clock.c index b30a2924ef14..3ef6451e972e 100644 --- a/kernel/sched/clock.c +++ b/kernel/sched/clock.c @@ -60,13 +60,14 @@  #include <linux/sched.h>  #include <linux/static_key.h>  #include <linux/workqueue.h> +#include <linux/compiler.h>  /*   * Scheduler clock - returns current time in nanosec units.   * This is default implementation.   * Architectures and sub-architectures can override this.   */ -unsigned long long __attribute__((weak)) sched_clock(void) +unsigned long long __weak sched_clock(void)  {  	return (unsigned long long)(jiffies - INITIAL_JIFFIES)  					* (NSEC_PER_SEC / HZ); | 
