diff options
| author | Andriy Gapon <avg@FreeBSD.org> | 2012-07-07 08:19:34 +0000 |
|---|---|---|
| committer | Andriy Gapon <avg@FreeBSD.org> | 2012-07-07 08:19:34 +0000 |
| commit | 987e5277f87aab2260f435f80424b5ed9ab7dd48 (patch) | |
| tree | c7118a90c58bf7a3de1d71c83d40602055a6462a | |
| parent | 412ef220846a26e2cba2c477f894b14f41ac2d7b (diff) | |
Notes
| -rw-r--r-- | sys/dev/acpica/acpi_cpu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/acpica/acpi_cpu.c b/sys/dev/acpica/acpi_cpu.c index 10e4ac032a41..e2a3dbf6bb30 100644 --- a/sys/dev/acpica/acpi_cpu.c +++ b/sys/dev/acpica/acpi_cpu.c @@ -629,6 +629,7 @@ acpi_cpu_generic_cx_probe(struct acpi_cpu_softc *sc) cx_ptr->type = ACPI_STATE_C1; cx_ptr->trans_lat = 0; cx_ptr++; + sc->cpu_non_c3 = sc->cpu_cx_count; sc->cpu_cx_count++; /* @@ -653,6 +654,7 @@ acpi_cpu_generic_cx_probe(struct acpi_cpu_softc *sc) cx_ptr->type = ACPI_STATE_C2; cx_ptr->trans_lat = AcpiGbl_FADT.C2Latency; cx_ptr++; + sc->cpu_non_c3 = sc->cpu_cx_count; sc->cpu_cx_count++; } } |
