mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[HALXBOX] Do not claim interrupt resources for the KD COM port
The actual COM port lacks SERIRQ, IRQ 4 is hardwired to the NIC CORE-15872 CORE-16216
This commit is contained in:
parent
96b40c9566
commit
269f3a2b24
1 changed files with 8 additions and 0 deletions
|
@ -287,6 +287,13 @@ HalpReportResourceUsage(IN PUNICODE_STRING HalName,
|
|||
HalpComIoSpace.Next = HalpAddressUsageList;
|
||||
HalpAddressUsageList = &HalpComIoSpace;
|
||||
|
||||
#if defined(SARCH_XBOX)
|
||||
/*
|
||||
* Do not claim interrupt resources for the KD COM port.
|
||||
* The actual COM port lacks SERIRQ, IRQ 4 is hardwired to the NIC.
|
||||
*/
|
||||
UNREFERENCED_PARAMETER(Port);
|
||||
#else
|
||||
/* Use the debug port table if we have one */
|
||||
HalpGetInfoFromACPI = HalpGetDebugPortTable();
|
||||
|
||||
|
@ -310,6 +317,7 @@ HalpReportResourceUsage(IN PUNICODE_STRING HalName,
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/* On non-ACPI systems, we need to build an address map */
|
||||
|
|
Loading…
Reference in a new issue