Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clocksource: dw_apb_timer_of: Do not trace read_sched_clock

We do not need to trace read_sched_clock function,
so add notrace attribute for this function.

Signed-off-by: Yang Wei <Wei.Yang@windriver.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>

authored by

Yang Wei and committed by
Daniel Lezcano
0d24d1f2 95c19a06

+1 -1
+1 -1
drivers/clocksource/dw_apb_timer_of.c
··· 106 106 sched_rate = rate; 107 107 } 108 108 109 - static u64 read_sched_clock(void) 109 + static u64 notrace read_sched_clock(void) 110 110 { 111 111 return ~__raw_readl(sched_io_base); 112 112 }