diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-10-04 00:27:32 -0400 |
---|---|---|
committer | Paul Mundt <pmundt@dysnomia.hsdv.com> | 2006-10-06 02:26:21 -0400 |
commit | a700f3594d63a85af196ac64984f7375d903afad (patch) | |
tree | b5a60ae64be34219a08c96cafc40abc1e754bbfe /include/asm-sh/timer.h | |
parent | 458821452642fd5dc2377b73cd1323fd4a9653e7 (diff) |
sh: Kill off timer_ops get_frequency().
We're not using this anywhere these days, kill it off.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh/timer.h')
-rw-r--r-- | include/asm-sh/timer.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/asm-sh/timer.h b/include/asm-sh/timer.h index ebc78db1a9ea..341cb71c2f9b 100644 --- a/include/asm-sh/timer.h +++ b/include/asm-sh/timer.h | |||
@@ -11,7 +11,6 @@ struct sys_timer_ops { | |||
11 | #ifndef CONFIG_GENERIC_TIME | 11 | #ifndef CONFIG_GENERIC_TIME |
12 | unsigned long (*get_offset)(void); | 12 | unsigned long (*get_offset)(void); |
13 | #endif | 13 | #endif |
14 | unsigned long (*get_frequency)(void); | ||
15 | }; | 14 | }; |
16 | 15 | ||
17 | struct sys_timer { | 16 | struct sys_timer { |
@@ -33,11 +32,6 @@ static inline unsigned long get_timer_offset(void) | |||
33 | } | 32 | } |
34 | #endif | 33 | #endif |
35 | 34 | ||
36 | static inline unsigned long get_timer_frequency(void) | ||
37 | { | ||
38 | return sys_timer->ops->get_frequency(); | ||
39 | } | ||
40 | |||
41 | /* arch/sh/kernel/timers/timer.c */ | 35 | /* arch/sh/kernel/timers/timer.c */ |
42 | struct sys_timer *get_sys_timer(void); | 36 | struct sys_timer *get_sys_timer(void); |
43 | 37 | ||