From 07f7fccaafa75c65e5a12dffbce4bc1a79ee821d Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 18 Mar 2008 13:31:45 +0000 Subject: [PATCH] Catch up to intr_event_create() prototype change. Pointy hat: jhb --- sys/sun4v/sun4v/intr_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sun4v/sun4v/intr_machdep.c b/sys/sun4v/sun4v/intr_machdep.c index 80e9d902aa4..cdc933e0a42 100644 --- a/sys/sun4v/sun4v/intr_machdep.c +++ b/sys/sun4v/sun4v/intr_machdep.c @@ -359,7 +359,7 @@ inthand_add(const char *name, int vec, driver_filter_t *filt, mtx_unlock_spin(&intr_table_lock); if (ie == NULL) { errcode = intr_event_create(&ie, (void *)(intptr_t)vec, 0, NULL, - NULL, "vec%d:", vec); + NULL, NULL, NULL, "vec%d:", vec); if (errcode) return (errcode); mtx_lock_spin(&intr_table_lock);