diff options
author | njl <njl@FreeBSD.org> | 2003-01-23 22:18:14 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-01-23 22:18:14 +0000 |
commit | d4b439a000677525451ededa080810c5644cd250 (patch) | |
tree | 4e4c76e6c4e79365ecf7d40904733ad7107787f2 /sys | |
parent | 6b1934225bdd59549144649731acde3c969cb9aa (diff) | |
download | FreeBSD-src-d4b439a000677525451ededa080810c5644cd250.zip FreeBSD-src-d4b439a000677525451ededa080810c5644cd250.tar.gz |
More useful announce message containing current speed of CPU
Diffstat (limited to 'sys')
-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 912d37c..b5b04fd 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)); } /* |