diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2003-01-23 22:18:14 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2003-01-23 22:18:14 +0000 |
| commit | a40f20c79184f1c1fcef82557b6a6aa5fcda34e3 (patch) | |
| tree | 4e4c76e6c4e79365ecf7d40904733ad7107787f2 | |
| parent | 537a265865f874772b935ee1a69b005f4eaae56f (diff) | |
Notes
| -rw-r--r-- | sys/dev/acpica/acpi_cpu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpi_cpu.c b/sys/dev/acpica/acpi_cpu.c index 912d37c14269..b5b04fdb194d 100644 --- a/sys/dev/acpica/acpi_cpu.c +++ b/sys/dev/acpica/acpi_cpu.c @@ -295,9 +295,9 @@ acpi_cpu_init_throttling(void *arg) /* set initial speed */ acpi_cpu_power_profile(NULL); - printf("acpi_cpu: CPU throttling available, %d steps " - "from 100%% to %d.%d%%\n", - CPU_MAX_SPEED, CPU_SPEED_PRINTABLE(1)); + printf("acpi_cpu: throttling enabled, %d steps (100%% to %d.%d%%), " + "currently %d.%d%%\n", CPU_MAX_SPEED, CPU_SPEED_PRINTABLE(1), + CPU_SPEED_PRINTABLE(cpu_current_state)); } /* |
