diff options
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r-- | sys/kern/subr_smp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 79fc383..945a588 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -1593,7 +1593,7 @@ undirect_isa_irq(int rirq) if (bootverbose) printf("Freeing redirected ISA irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ - return ???; + return -1; #else if (bootverbose) printf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq); @@ -1613,7 +1613,7 @@ undirect_pci_irq(int rirq) printf("Freeing redirected PCI irq %d.\n", rirq); /** FIXME: tickle the MB redirector chip */ - return ???; + return -1; #else if (bootverbose) printf("Freeing (NOT implemented) redirected PCI irq %d.\n", |