mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Oh, how embarresing. I broke my own platform. :-)
This commit is contained in:
parent
c0952034c3
commit
0469a9ecfd
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=122845
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user