diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2013-07-18 19:21:19 -0400 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2013-10-09 19:54:39 -0400 |
commit | b4042ceaabbd913bc5b397ddd1e396eeb312d72f (patch) | |
tree | b3392b81fb965700b1332c93f76d63770a21da46 /kernel | |
parent | 65cd4f6c99c1170bd0114dbd71b978012ea44d28 (diff) |
sched_clock: Remove sched_clock_func() hook
Nobody is using sched_clock_func() anymore now that sched_clock
supports up to 64 bits. Remove the hook so that new code only
uses sched_clock_register().
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/time/sched_clock.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/kernel/time/sched_clock.c b/kernel/time/sched_clock.c index f388baeaf2b6..68b799375981 100644 --- a/kernel/time/sched_clock.c +++ b/kernel/time/sched_clock.c | |||
@@ -63,7 +63,7 @@ static inline u64 notrace cyc_to_ns(u64 cyc, u32 mult, u32 shift) | |||
63 | return (cyc * mult) >> shift; | 63 | return (cyc * mult) >> shift; |
64 | } | 64 | } |
65 | 65 | ||
66 | static unsigned long long notrace sched_clock_32(void) | 66 | unsigned long long notrace sched_clock(void) |
67 | { | 67 | { |
68 | u64 epoch_ns; | 68 | u64 epoch_ns; |
69 | u64 epoch_cyc; | 69 | u64 epoch_cyc; |
@@ -170,13 +170,6 @@ void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate) | |||
170 | sched_clock_register(read_sched_clock_32_wrapper, bits, rate); | 170 | sched_clock_register(read_sched_clock_32_wrapper, bits, rate); |
171 | } | 171 | } |
172 | 172 | ||
173 | unsigned long long __read_mostly (*sched_clock_func)(void) = sched_clock_32; | ||
174 | |||
175 | unsigned long long notrace sched_clock(void) | ||
176 | { | ||
177 | return sched_clock_func(); | ||
178 | } | ||
179 | |||
180 | void __init sched_clock_postinit(void) | 173 | void __init sched_clock_postinit(void) |
181 | { | 174 | { |
182 | /* | 175 | /* |