Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ static void __init add_clocksource(struct device_node *source_timer)
	sched_rate = rate;
}

static u64 read_sched_clock(void)
static u64 notrace read_sched_clock(void)
{
	return ~__raw_readl(sched_io_base);
}