diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2013-07-18 16:21:19 -0700 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2013-10-09 16:54:39 -0700 |
commit | b4042ceaabbd913bc5b397ddd1e396eeb312d72f (patch) | |
tree | b3392b81fb965700b1332c93f76d63770a21da46 /include | |
parent | 65cd4f6c99c1170bd0114dbd71b978012ea44d28 (diff) | |
download | linux-b4042ceaabbd913bc5b397ddd1e396eeb312d72f.tar.gz |
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 'include')
-rw-r--r-- | include/linux/sched_clock.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/sched_clock.h b/include/linux/sched_clock.h index eca7abeb86fc..cddf0c2940b6 100644 --- a/include/linux/sched_clock.h +++ b/include/linux/sched_clock.h @@ -18,6 +18,4 @@ extern void setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate); extern void sched_clock_register(u64 (*read)(void), int bits, unsigned long rate); -extern unsigned long long (*sched_clock_func)(void); - #endif |