- 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:
Cameron Gutman 2011-09-29 16:03:49 +00:00
parent 214364804d
commit 55cd785094

View file

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