summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/acpi_perf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/acpica/acpi_perf.c')
-rw-r--r--sys/dev/acpica/acpi_perf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpi_perf.c b/sys/dev/acpica/acpi_perf.c
index 7b39fb9..e517ad3 100644
--- a/sys/dev/acpica/acpi_perf.c
+++ b/sys/dev/acpica/acpi_perf.c
@@ -221,7 +221,7 @@ acpi_perf_attach(device_t dev)
sc->px_curr_state = CPUFREQ_VAL_UNKNOWN;
if (acpi_perf_evaluate(dev) != 0)
return (ENXIO);
- AcpiOsQueueForExecution(OSD_PRIORITY_LO, acpi_px_startup, NULL);
+ AcpiOsExecute(OSL_NOTIFY_HANDLER, acpi_px_startup, NULL);
if (!sc->info_only)
cpufreq_register(dev);
@@ -393,10 +393,10 @@ acpi_px_startup(void *arg)
{
/* Signal to the platform that we are taking over CPU control. */
- if (AcpiGbl_FADT->PstateCnt == 0)
+ if (AcpiGbl_FADT.PstateControl == 0)
return;
ACPI_LOCK(acpi);
- AcpiOsWritePort(AcpiGbl_FADT->SmiCmd, AcpiGbl_FADT->PstateCnt, 8);
+ AcpiOsWritePort(AcpiGbl_FADT.SmiCommand, AcpiGbl_FADT.PstateControl, 8);
ACPI_UNLOCK(acpi);
}
OpenPOWER on IntegriCloud