From 6a2ffa86e5b748ba71e36d37462a936eb9101be7 Mon Sep 17 00:00:00 2001 From: piso Date: Fri, 23 Feb 2007 12:19:07 +0000 Subject: o break newbus api: add a new argument of type driver_filter_t to bus_setup_intr() o add an int return code to all fast handlers o retire INTR_FAST/IH_FAST For more info: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=465712+0+current/freebsd-current Reviewed by: many Approved by: re@ --- sys/isa/isa_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/isa/isa_common.h') diff --git a/sys/isa/isa_common.h b/sys/isa/isa_common.h index 3f29807..4d61d46 100644 --- a/sys/isa/isa_common.h +++ b/sys/isa/isa_common.h @@ -70,7 +70,8 @@ extern int isa_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r); extern int isa_setup_intr(device_t bus, device_t child, struct resource *r, - int flags, void (*ihand)(void *), void *arg, void **cookiep); + int flags, driver_filter_t *filter, void (*ihand)(void *), void *arg, + void **cookiep); extern int isa_teardown_intr(device_t bus, device_t child, struct resource *r, void *cookie); -- cgit v1.1