diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2003-11-17 07:50:59 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2003-11-17 07:50:59 +0000 |
| commit | 0469a9ecfde26fcbb448bbac4a1d573d089f52f3 (patch) | |
| tree | 7f6772c51c6abc3ac3a1d166013354aefd3874dd | |
| parent | c0952034c3cd5058ac188c365b1237d9ec37bdc4 (diff) | |
Notes
| -rw-r--r-- | sys/amd64/isa/intr_machdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/isa/intr_machdep.c b/sys/amd64/isa/intr_machdep.c index 40ffb26cff62..30c12e73fb1b 100644 --- a/sys/amd64/isa/intr_machdep.c +++ b/sys/amd64/isa/intr_machdep.c @@ -99,8 +99,8 @@ static inthand_t *slowintr[ICU_LEN] = { static driver_intr_t isa_strayintr; static void ithds_init(void *dummy); -static void ithread_enable(int vector); -static void ithread_disable(int vector); +static void ithread_enable(uintptr_t vector); +static void ithread_disable(uintptr_t vector); static void init_i8259(void); #define NMI_PARITY (1 << 7) @@ -421,7 +421,7 @@ ithds_init(void *dummy) SYSINIT(ithds_init, SI_SUB_INTR, SI_ORDER_SECOND, ithds_init, NULL); static void -ithread_enable(int vector) +ithread_enable(uintptr_t vector) { register_t crit; @@ -433,7 +433,7 @@ ithread_enable(int vector) } static void -ithread_disable(int vector) +ithread_disable(uintptr_t vector) { register_t crit; |
