Skip to content

Commit

Permalink
sched_clock: Remove sched_clock_func() hook
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: John Stultz <[email protected]>
  • Loading branch information
bebarino authored and johnstultz-work committed Oct 9, 2013
1 parent 65cd4f6 commit b4042ce
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 0 additions & 2 deletions include/linux/sched_clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 1 addition & 8 deletions kernel/time/sched_clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static inline u64 notrace cyc_to_ns(u64 cyc, u32 mult, u32 shift)
return (cyc * mult) >> shift;
}

static unsigned long long notrace sched_clock_32(void)
unsigned long long notrace sched_clock(void)
{
u64 epoch_ns;
u64 epoch_cyc;
Expand Down Expand Up @@ -170,13 +170,6 @@ void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate)
sched_clock_register(read_sched_clock_32_wrapper, bits, rate);
}

unsigned long long __read_mostly (*sched_clock_func)(void) = sched_clock_32;

unsigned long long notrace sched_clock(void)
{
return sched_clock_func();
}

void __init sched_clock_postinit(void)
{
/*
Expand Down

0 comments on commit b4042ce

Please sign in to comment.