mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 10:32:41 +08:00
[HALACPI] Initialize HalpPicVectorRedirect with the full 0-15 array
This probably seems a little silly that I'm making a change to an array we don't really use but because of this little bug ACPI was getting reported as 0xA which is incorrect! As we call IoConnectInterrupt with 0x9 later. This makes sure that the IRQ from FADT is correct.
This commit is contained in:
@@ -37,7 +37,7 @@ LIST_ENTRY HalpAcpiTableMatchList;
|
||||
|
||||
ULONG HalpInvalidAcpiTable;
|
||||
|
||||
ULONG HalpPicVectorRedirect[] = {0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15};
|
||||
ULONG HalpPicVectorRedirect[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15};
|
||||
|
||||
/* This determines the HAL type */
|
||||
BOOLEAN HalDisableFirmwareMapper = TRUE;
|
||||
|
||||
Reference in New Issue
Block a user