Commit 0d24d1f2 authored by Yang Wei's avatar Yang Wei Committed by Daniel Lezcano

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: default avatarYang Wei <Wei.Yang@windriver.com>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent 95c19a06
...@@ -106,7 +106,7 @@ static void __init add_clocksource(struct device_node *source_timer) ...@@ -106,7 +106,7 @@ static void __init add_clocksource(struct device_node *source_timer)
sched_rate = rate; sched_rate = rate;
} }
static u64 read_sched_clock(void) static u64 notrace read_sched_clock(void)
{ {
return ~__raw_readl(sched_io_base); return ~__raw_readl(sched_io_base);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment