[HAL]: Implement PCI Vector/IRQL translation too.

svn path=/trunk/; revision=47675
This commit is contained in:
Sir Richard 2010-06-07 20:37:45 +00:00
parent 6bbba6481b
commit 566408b2d9

View file

@ -516,9 +516,16 @@ HalpGetPCIIntOnISABus(IN PBUS_HANDLER BusHandler,
OUT PKIRQL Irql, OUT PKIRQL Irql,
OUT PKAFFINITY Affinity) OUT PKAFFINITY Affinity)
{ {
UNIMPLEMENTED; /* Validate the level first */
while (TRUE); if (BusInterruptLevel < 1) return 0;
return 0;
/* PCI has its IRQs on top of ISA IRQs, so pass it on to the ISA handler */
return HalGetInterruptVector(Isa,
0,
BusInterruptLevel,
0,
Irql,
Affinity);
} }
VOID VOID