diff options
author | peter <peter@FreeBSD.org> | 2003-11-17 06:10:15 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-11-17 06:10:15 +0000 |
commit | d29883b254f7a8b1b5b751f0d467645a6c461fe0 (patch) | |
tree | 6fae035b125c53553249840422744326487137e4 /sys/ia64 | |
parent | 38ebd79a92378dac00a8e0c47929a4b05dafe8c4 (diff) | |
download | FreeBSD-src-d29883b254f7a8b1b5b751f0d467645a6c461fe0.zip FreeBSD-src-d29883b254f7a8b1b5b751f0d467645a6c461fe0.tar.gz |
Widen the enable/disable helper function's argument in line with the
ithread_create() changes etc. This should be mostly a NOP.
Diffstat (limited to 'sys/ia64')
-rw-r--r-- | sys/ia64/ia64/interrupt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/ia64/interrupt.c b/sys/ia64/ia64/interrupt.c index 5c71c01..0401a9a 100644 --- a/sys/ia64/ia64/interrupt.c +++ b/sys/ia64/ia64/interrupt.c @@ -263,7 +263,7 @@ ithds_init(void *dummy) SYSINIT(ithds_init, SI_SUB_INTR, SI_ORDER_SECOND, ithds_init, NULL); static void -ia64_send_eoi(int vector) +ia64_send_eoi(uintptr_t vector) { int irq, i; |