- Don't start at IRQ 0 in build-freelist, but instead start at IRQ 1.

(Not sure if this makes muich difference, but you never know.)
This commit is contained in:
Nate Williams 1997-10-06 02:54:19 +00:00
parent 7e00649986
commit 90c752d519

View File

@ -358,7 +358,7 @@ build_freelist(u_int pcic_mask)
freemask = 0;
/* Walk through all of the IRQ's and find any that aren't allocated. */
for (irq = 0; irq < ICU_LEN; irq++) {
for (irq = 1; irq < ICU_LEN; irq++) {
/*
* If the PCIC controller can't generate it, don't
* bother checking to see if it it's free.