diff options
author | jhb <jhb@FreeBSD.org> | 2000-11-01 18:40:42 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-11-01 18:40:42 +0000 |
commit | af87892726ba369e11d02a86ed44830c739cd311 (patch) | |
tree | 9d48ecf3c82adba880b0621b953ed221cc657eb6 /sys/alpha/isa | |
parent | 9b0a561703be32661910f94cd90c9a84cac698c2 (diff) | |
download | FreeBSD-src-af87892726ba369e11d02a86ed44830c739cd311.zip FreeBSD-src-af87892726ba369e11d02a86ed44830c739cd311.tar.gz |
Pass in the new-bus flags to alpha_setup_intr().
Diffstat (limited to 'sys/alpha/isa')
-rw-r--r-- | sys/alpha/isa/isa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/alpha/isa/isa.c b/sys/alpha/isa/isa.c index 96cfe1c..961860c 100644 --- a/sys/alpha/isa/isa.c +++ b/sys/alpha/isa/isa.c @@ -320,7 +320,7 @@ isa_setup_intr(device_t dev, device_t child, error = alpha_setup_intr( device_get_nameunit(child ? child : dev), 0x800 + (irq->r_start << 4), isa_handle_intr, ii, - ithread_priority(flags), &ii->ih, + ithread_priority(flags), flags, &ii->ih, &intrcnt[INTRCNT_ISA_IRQ + irq->r_start], NULL, NULL); if (error) { |