From b44ce1c4dba5564e90e29ad148c5c5b2e2ac8c13 Mon Sep 17 00:00:00 2001 From: piso Date: Sat, 24 Feb 2007 16:56:22 +0000 Subject: Updated ia64 isa support with the new bus_setup_intr() syntax. Approved by: re (implicit?) --- sys/ia64/isa/isa.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/ia64') diff --git a/sys/ia64/isa/isa.c b/sys/ia64/isa/isa.c index 01b4c3d..889b907 100644 --- a/sys/ia64/isa/isa.c +++ b/sys/ia64/isa/isa.c @@ -155,10 +155,11 @@ isa_release_resource(device_t bus, device_t child, int type, int rid, */ int isa_setup_intr(device_t bus, device_t child, struct resource *r, int flags, - void (*ihand)(void *), void *arg, void **cookiep) + driver_filter_t filter, void (*ihand)(void *), void *arg, + void **cookiep) { return (BUS_SETUP_INTR(device_get_parent(bus), child, r, flags, - ihand, arg, cookiep)); + filter, ihand, arg, cookiep)); } int -- cgit v1.1