diff options
author | Greg Ungerer <gerg@snapgear.com> | 2007-02-06 21:03:19 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 13:45:33 -0500 |
commit | eaefd5fb7d793c9c1bcef1b0c0d5ec3824a85b91 (patch) | |
tree | 93eb9dc7d68dbfe4c77d11951f1ce10c4a282982 /arch/m68knommu/platform/520x | |
parent | 1274c1088e54aa178d8546a3830fb533062d01f4 (diff) |
[PATCH] m68knommu: use irq_handler_t for passing handler types
Use irq_handler_t for passing clock handler routine around.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68knommu/platform/520x')
-rw-r--r-- | arch/m68knommu/platform/520x/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/m68knommu/platform/520x/config.c b/arch/m68knommu/platform/520x/config.c index 823f561f35b0..58b2878deb61 100644 --- a/arch/m68knommu/platform/520x/config.c +++ b/arch/m68knommu/platform/520x/config.c | |||
@@ -13,6 +13,7 @@ | |||
13 | 13 | ||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/param.h> | 15 | #include <linux/param.h> |
16 | #include <linux/interrupt.h> | ||
16 | #include <asm/machdep.h> | 17 | #include <asm/machdep.h> |
17 | #include <asm/dma.h> | 18 | #include <asm/dma.h> |
18 | 19 | ||
@@ -27,7 +28,7 @@ unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | |||
27 | /***************************************************************************/ | 28 | /***************************************************************************/ |
28 | 29 | ||
29 | void coldfire_pit_tick(void); | 30 | void coldfire_pit_tick(void); |
30 | void coldfire_pit_init(irqreturn_t (*handler)(int, void *, struct pt_regs *)); | 31 | void coldfire_pit_init(irq_handler_t handler); |
31 | unsigned long coldfire_pit_offset(void); | 32 | unsigned long coldfire_pit_offset(void); |
32 | void coldfire_trap_init(void); | 33 | void coldfire_trap_init(void); |
33 | void coldfire_reset(void); | 34 | void coldfire_reset(void); |