[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:
Justin Miller
2025-07-09 20:39:48 -07:00
parent e7358c5930
commit d054f63e68

View File

@@ -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;