mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:25:52 +00:00
[HAL]: Implement PCI Vector/IRQL translation too.
svn path=/trunk/; revision=47675
This commit is contained in:
parent
6bbba6481b
commit
566408b2d9
1 changed files with 10 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue