summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
authorpiso <piso@FreeBSD.org>2007-02-24 16:56:22 +0000
committerpiso <piso@FreeBSD.org>2007-02-24 16:56:22 +0000
commitb44ce1c4dba5564e90e29ad148c5c5b2e2ac8c13 (patch)
tree03e839551e36b7eedbafccda91f8cb34fd2f84e0 /sys/ia64
parent888f5e57b2c6d3791876a764fe95272318c69e47 (diff)
downloadFreeBSD-src-b44ce1c4dba5564e90e29ad148c5c5b2e2ac8c13.zip
FreeBSD-src-b44ce1c4dba5564e90e29ad148c5c5b2e2ac8c13.tar.gz
Updated ia64 isa support with the new bus_setup_intr() syntax.
Approved by: re (implicit?)
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/isa/isa.c5
1 files changed, 3 insertions, 2 deletions
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
OpenPOWER on IntegriCloud