diff options
author | Greg Ungerer <gerg@snapgear.com> | 2007-03-06 20:28:13 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-06 21:08:38 -0500 |
commit | 1ea9acc7823587266a26293a3b74deafc6637427 (patch) | |
tree | 0b664aca895c8b1a9c566b54875d4419c0a794a3 /arch/m68knommu/platform/68VZ328 | |
parent | b032fde9097605f9f1099eeca28f3b5b09e55ec0 (diff) |
[PATCH] m68knommu: use irq_handler_t for passing handler types in 68328 setup
Use irq_handler_t type for passing around timer interrupt routine
in 368360 setup code.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68knommu/platform/68VZ328')
-rw-r--r-- | arch/m68knommu/platform/68VZ328/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/m68knommu/platform/68VZ328/config.c b/arch/m68knommu/platform/68VZ328/config.c index fcd100b7594d..8abe0f6e7235 100644 --- a/arch/m68knommu/platform/68VZ328/config.c +++ b/arch/m68knommu/platform/68VZ328/config.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/console.h> | 21 | #include <linux/console.h> |
22 | #include <linux/kd.h> | 22 | #include <linux/kd.h> |
23 | #include <linux/netdevice.h> | 23 | #include <linux/netdevice.h> |
24 | #include <linux/interrupt.h> | ||
24 | 25 | ||
25 | #include <asm/setup.h> | 26 | #include <asm/setup.h> |
26 | #include <asm/system.h> | 27 | #include <asm/system.h> |
@@ -36,7 +37,7 @@ | |||
36 | 37 | ||
37 | /***************************************************************************/ | 38 | /***************************************************************************/ |
38 | 39 | ||
39 | void m68328_timer_init(irqreturn_t (*timer_routine) (int, void *, struct pt_regs *)); | 40 | void m68328_timer_init(irq_handler_t timer_routine); |
40 | void m68328_timer_tick(void); | 41 | void m68328_timer_tick(void); |
41 | unsigned long m68328_timer_gettimeoffset(void); | 42 | unsigned long m68328_timer_gettimeoffset(void); |
42 | void m68328_timer_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec); | 43 | void m68328_timer_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec); |