mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
- Don't enumerate the ACPI root device
svn path=/trunk/; revision=46171
This commit is contained in:
parent
422b433150
commit
38f7f2fe05
2 changed files with 4 additions and 2 deletions
|
@ -37,6 +37,10 @@ Bus_PlugInDevice (
|
|||
|
||||
PAGED_CODE ();
|
||||
|
||||
//Don't enumerate the root device
|
||||
if (Device->handle == ACPI_ROOT_OBJECT)
|
||||
return STATUS_SUCCESS;
|
||||
|
||||
/* Check we didnt add this already */
|
||||
for (entry = FdoData->ListOfPDOs.Flink;
|
||||
entry != &FdoData->ListOfPDOs; entry = entry->Flink)
|
||||
|
|
|
@ -548,8 +548,6 @@ Bus_PDO_QueryDeviceText(
|
|||
Buffer = L"ACPI Power Resource";
|
||||
else if (wcsstr(DeviceData->HardwareIDs, L"Processor") != 0)
|
||||
Buffer = L"Processor";
|
||||
else if (wcsstr(DeviceData->HardwareIDs, L"ACPI_SYS") != 0)
|
||||
Buffer = L"ACPI System";
|
||||
else if (wcsstr(DeviceData->HardwareIDs, L"ThermalZone") != 0)
|
||||
Buffer = L"ACPI Thermal Zone";
|
||||
else if (wcsstr(DeviceData->HardwareIDs, L"ACPI0002") != 0)
|
||||
|
|
Loading…
Reference in a new issue