aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel.thompson@linaro.org>2015-02-07 16:29:03 +0000
committerDaniel Thompson <daniel.thompson@linaro.org>2015-02-07 17:36:43 +0000
commit6afd49a3eefb29c743169e7c370700ab138d2d1c (patch)
tree28dc389faa8dd66f30523a6128d4eb1471e38dc4
parentda23a1311152d84cdfeccaa0dbf7f262c4dcbb00 (diff)
sched_clock: Remove redundant notrace from update function
Currently update_sched_clock() is marked as notrace but this function is not called by ftrace. This is trivially fixed by removing the mark up. Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
-rw-r--r--kernel/time/sched_clock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/sched_clock.c b/kernel/time/sched_clock.c
index 5d6407951fb8..9280327676dc 100644
--- a/kernel/time/sched_clock.c
+++ b/kernel/time/sched_clock.c
@@ -111,7 +111,7 @@ unsigned long long notrace sched_clock(void)
/*
* Atomically update the sched_clock epoch.
*/
-static void notrace update_sched_clock(void)
+static void update_sched_clock(void)
{
unsigned long flags;
u64 cyc;