diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:09 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:09 -0400 |
commit | 91a2fcc88634663e9e13dcdfad0e4a860e64aeee (patch) | |
tree | a86b936f1057207d46e5a07ed826052ff640869a /include/asm-mips/time.h | |
parent | 90b02340dcc6ce00bf22c48f4865915f5989e5e4 (diff) |
[MIPS] Consolidate all variants of MIPS cp0 timer interrupt handlers.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/time.h')
-rw-r--r-- | include/asm-mips/time.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/asm-mips/time.h b/include/asm-mips/time.h index 963507d33f69..3516b32c9efb 100644 --- a/include/asm-mips/time.h +++ b/include/asm-mips/time.h | |||
@@ -49,20 +49,14 @@ extern void (*mips_timer_ack)(void); | |||
49 | extern struct clocksource clocksource_mips; | 49 | extern struct clocksource clocksource_mips; |
50 | 50 | ||
51 | /* | 51 | /* |
52 | * high-level timer interrupt routines. | 52 | * The low-level timer interrupt routine. |
53 | */ | 53 | */ |
54 | extern irqreturn_t timer_interrupt(int irq, void *dev_id); | 54 | extern void ll_timer_interrupt(int irq, void *dev_id); |
55 | |||
56 | /* | ||
57 | * the corresponding low-level timer interrupt routine. | ||
58 | */ | ||
59 | extern asmlinkage void ll_timer_interrupt(int irq); | ||
60 | 55 | ||
61 | /* | 56 | /* |
62 | * profiling and process accouting is done separately in local_timer_interrupt | 57 | * profiling and process accouting is done separately in local_timer_interrupt |
63 | */ | 58 | */ |
64 | extern void local_timer_interrupt(int irq, void *dev_id); | 59 | extern void local_timer_interrupt(int irq, void *dev_id); |
65 | extern asmlinkage void ll_local_timer_interrupt(int irq); | ||
66 | 60 | ||
67 | /* | 61 | /* |
68 | * board specific routines required by time_init(). | 62 | * board specific routines required by time_init(). |
@@ -78,4 +72,10 @@ extern void plat_timer_setup(struct irqaction *irq); | |||
78 | */ | 72 | */ |
79 | extern unsigned int mips_hpt_frequency; | 73 | extern unsigned int mips_hpt_frequency; |
80 | 74 | ||
75 | /* | ||
76 | * The performance counter IRQ on MIPS is a close relative to the timer IRQ | ||
77 | * so it lives here. | ||
78 | */ | ||
79 | extern int (*perf_irq)(void); | ||
80 | |||
81 | #endif /* _ASM_TIME_H */ | 81 | #endif /* _ASM_TIME_H */ |