diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-09 23:29:26 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-09 23:29:26 +0200 |
commit | 9b6d99f48dfc27d6009e134a5d771eaefd75faac (patch) | |
tree | 5131841a5df84ad9564dad19f11f9d1a0e0085bb /arch/ia64 | |
parent | Merge branch 'irqclean-submit1' of master.kernel.org:/pub/scm/linux/kernel/gi... (diff) | |
parent | IRQ: Use the new typedef for interrupt handler function pointers (diff) | |
download | linux-9b6d99f48dfc27d6009e134a5d771eaefd75faac.tar.xz linux-9b6d99f48dfc27d6009e134a5d771eaefd75faac.zip |
Merge git://git.infradead.org/~dhowells/irq-2.6
* git://git.infradead.org/~dhowells/irq-2.6:
IRQ: Use the new typedef for interrupt handler function pointers
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/hp/sim/simserial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/hp/sim/simserial.c b/arch/ia64/hp/sim/simserial.c index 77819acaea9d..5095778be53c 100644 --- a/arch/ia64/hp/sim/simserial.c +++ b/arch/ia64/hp/sim/simserial.c @@ -714,7 +714,7 @@ startup(struct async_struct *info) { unsigned long flags; int retval=0; - irqreturn_t (*handler)(int, void *); + irq_handler_t handler; struct serial_state *state= info->state; unsigned long page; |