mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[ACPI]
- Add a hack to skip calling methods of the HPET object because it causes a hardlock on VMWare - Attempt #2 at fixing VMware svn path=/trunk/; revision=53892
This commit is contained in:
parent
214364804d
commit
55cd785094
1 changed files with 9 additions and 0 deletions
|
@ -1195,6 +1195,15 @@ acpi_bus_add (
|
|||
}
|
||||
sprintf(device->pnp.bus_id, "%s", bus_id);
|
||||
buffer.Pointer = NULL;
|
||||
|
||||
/* HACK: Skip HPET */
|
||||
if (strstr(device->pnp.bus_id, "HPET"))
|
||||
{
|
||||
DPRINT1("Using HPET hack\n");
|
||||
result = -1;
|
||||
goto end;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue