1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-26 16:18:31 +00:00

Catch up to intr_event_create() prototype change.

Pointy hat:	jhb
This commit is contained in:
John Baldwin 2008-03-18 13:31:45 +00:00
parent 1cf9b83c6d
commit 07f7fccaaf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177350

View File

@ -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);