We don't need to call _INI on processor objects now that ACPI-CA does

this as it should.
This commit is contained in:
Nate Lawson 2003-12-09 03:01:54 +00:00
parent 2d4c34274d
commit 73a34dd424

View File

@ -251,13 +251,6 @@ acpi_cpu_attach(device_t dev)
return (ENXIO);
cpu_softc[cpu_id] = sc;
/*
* XXX Temporarily call any _INI function under the processor.
* ACPI-CA will do this after Nov. 2003. The spec doesn't
* suggest processors have _INI methods but my Thinkpad T23 does.
*/
AcpiEvaluateObject(sc->cpu_handle, "_INI", NULL, NULL);
/* Get various global values from the Processor object. */
sc->cpu_p_blk = pobj.Processor.PblkAddress;
sc->cpu_p_blk_len = pobj.Processor.PblkLength;