diff options
author | Greg Ungerer <gerg@snapgear.com> | 2007-02-06 21:03:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 13:45:33 -0500 |
commit | c051b01129560ea02ea2cebdf00db0721cc9a618 (patch) | |
tree | fb182c2e78f2dedfdeb8802d31c2903373e40c01 /arch | |
parent | 459c6a9b8ee931e48f6af6637c10ec45521f0536 (diff) |
[PATCH] m68knommu: use irq_handler_t passing handler to clock init
Use irq_handler_t for passing interrupt handler around.
Fix optional profiler handler to return a irq_return_t type.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m68knommu/platform/5307/timers.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/m68knommu/platform/5307/timers.c b/arch/m68knommu/platform/5307/timers.c index e5668af19789..87b112b363a6 100644 --- a/arch/m68knommu/platform/5307/timers.c +++ b/arch/m68knommu/platform/5307/timers.c | |||
@@ -62,7 +62,7 @@ void coldfire_tick(void) | |||
62 | 62 | ||
63 | /***************************************************************************/ | 63 | /***************************************************************************/ |
64 | 64 | ||
65 | void coldfire_timer_init(irqreturn_t (*handler)(int, void *, struct pt_regs *)) | 65 | void coldfire_timer_init(irq_handler_t handler) |
66 | { | 66 | { |
67 | __raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR)); | 67 | __raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR)); |
68 | __raw_writetrr(((MCF_BUSCLK / 16) / HZ), TA(MCFTIMER_TRR)); | 68 | __raw_writetrr(((MCF_BUSCLK / 16) / HZ), TA(MCFTIMER_TRR)); |
@@ -111,12 +111,13 @@ unsigned long coldfire_timer_offset(void) | |||
111 | /* | 111 | /* |
112 | * Use the other timer to provide high accuracy profiling info. | 112 | * Use the other timer to provide high accuracy profiling info. |
113 | */ | 113 | */ |
114 | void coldfire_profile_tick(int irq, void *dummy, struct pt_regs *regs) | 114 | irqreturn_t coldfire_profile_tick(int irq, void *dummy) |
115 | { | 115 | { |
116 | /* Reset ColdFire timer2 */ | 116 | /* Reset ColdFire timer2 */ |
117 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER)); | 117 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER)); |
118 | if (current->pid) | 118 | if (current->pid) |
119 | profile_tick(CPU_PROFILING, regs); | 119 | profile_tick(CPU_PROFILING, regs); |
120 | return IRQ_HANDLED; | ||
120 | } | 121 | } |
121 | 122 | ||
122 | /***************************************************************************/ | 123 | /***************************************************************************/ |