aboutsummaryrefslogtreecommitdiff
path: root/sys/mips
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2008-09-18 15:15:42 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2008-09-18 15:15:42 +0000
commitc54234256885ea87f7af0e3271547d4e0ddba92f (patch)
treec1ef8bca28e5cf1a370055ca1517828c71f4b86b /sys/mips
parentc4901b67984de1dd678b00e52afd2c71cd7c011f (diff)
downloadsrc-c54234256885ea87f7af0e3271547d4e0ddba92f.tar.gz
src-c54234256885ea87f7af0e3271547d4e0ddba92f.zip
Catch up with intr_event_create() API changes.
Notes
Notes: svn path=/head/; revision=183147
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/malta/gt_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/malta/gt_pci.c b/sys/mips/malta/gt_pci.c
index b6fc3d1159d2..c9995901a668 100644
--- a/sys/mips/malta/gt_pci.c
+++ b/sys/mips/malta/gt_pci.c
@@ -657,7 +657,7 @@ gt_pci_setup_intr(device_t dev, device_t child, struct resource *ires,
event = sc->sc_eventstab[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, "gt_pci intr%d:", irq);
if (error)