summaryrefslogtreecommitdiffstats
path: root/sys/mips
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2008-09-18 15:24:49 +0000
committerobrien <obrien@FreeBSD.org>2008-09-18 15:24:49 +0000
commit11063fdcc56aa7cd037d8ac96f00ffe89d308f8e (patch)
tree6baf19bb4b398760ae24839e368e543db9accadd /sys/mips
parentd69fc9502de8f78c88e6c4dc58e44d3ee4f2b927 (diff)
downloadFreeBSD-src-11063fdcc56aa7cd037d8ac96f00ffe89d308f8e.zip
FreeBSD-src-11063fdcc56aa7cd037d8ac96f00ffe89d308f8e.tar.gz
Catch up with intr_event_create() API changes.
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/mips/intr_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/mips/mips/intr_machdep.c b/sys/mips/mips/intr_machdep.c
index b529676..a487500 100644
--- a/sys/mips/mips/intr_machdep.c
+++ b/sys/mips/mips/intr_machdep.c
@@ -84,7 +84,7 @@ cpu_establish_hardintr(const char *name, driver_filter_t *filt,
event = hardintr_events[irq];
if (event == NULL) {
- error = intr_event_create(&event, (void *)irq, 0,
+ error = intr_event_create(&event, (void *)irq, 0, 0,
(mask_fn)mips_mask_irq, (mask_fn)mips_unmask_irq,
(mask_fn)mips_unmask_irq, NULL, "hard intr%d:", irq);
if (error)
@@ -121,7 +121,7 @@ cpu_establish_softintr(const char *name, driver_filter_t *filt,
event = softintr_events[irq];
if (event == NULL) {
- error = intr_event_create(&event, (void *)irq, 0,
+ error = intr_event_create(&event, (void *)irq, 0, 0,
(mask_fn)mips_mask_irq, (mask_fn)mips_unmask_irq,
(mask_fn)mips_unmask_irq, NULL, "intr%d:", irq);
if (error)
OpenPOWER on IntegriCloud