diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-12 06:54:36 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-12 06:54:36 -0400 |
commit | fd5b12458b25a88eb6f6b56464846d98a45e8928 (patch) | |
tree | 916107480879f131b504652af4f74524b2f327b3 /arch/sh/include/asm | |
parent | 9fe5ee0efb1b1d4a0939bc4252a8427e3337d96a (diff) | |
parent | 8be5f1a68f2c14082939dd54e7037dcee2eb54f8 (diff) |
Merge branch 'master' into sh/clkfwk
Diffstat (limited to 'arch/sh/include/asm')
-rw-r--r-- | arch/sh/include/asm/timer.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/arch/sh/include/asm/timer.h b/arch/sh/include/asm/timer.h deleted file mode 100644 index 6c0851188c00..000000000000 --- a/arch/sh/include/asm/timer.h +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | #ifndef __ASM_SH_TIMER_H | ||
2 | #define __ASM_SH_TIMER_H | ||
3 | |||
4 | #include <linux/sysdev.h> | ||
5 | #include <linux/clocksource.h> | ||
6 | #include <cpu/timer.h> | ||
7 | |||
8 | struct sys_timer_ops { | ||
9 | int (*init)(void); | ||
10 | int (*start)(void); | ||
11 | int (*stop)(void); | ||
12 | }; | ||
13 | |||
14 | struct sys_timer { | ||
15 | const char *name; | ||
16 | |||
17 | struct sys_device dev; | ||
18 | struct sys_timer_ops *ops; | ||
19 | }; | ||
20 | |||
21 | extern struct sys_timer tmu_timer; | ||
22 | extern struct sys_timer *sys_timer; | ||
23 | |||
24 | /* arch/sh/kernel/timers/timer.c */ | ||
25 | struct sys_timer *get_sys_timer(void); | ||
26 | |||
27 | extern struct clocksource clocksource_sh; | ||
28 | |||
29 | #endif /* __ASM_SH_TIMER_H */ | ||