diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-03-24 11:33:52 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-03-24 11:33:52 +0000 |
| commit | 116caf7cf72d52262965a19065c6b5ab789a2c54 (patch) | |
| tree | 2556b3d0446fb58f320da992539a8a88719c8f12 /sys/dev/acpica/acpi_timer.c | |
| parent | c543d983fab4b9855ffe159d4ed9a31f8e41864f (diff) | |
Notes
Diffstat (limited to 'sys/dev/acpica/acpi_timer.c')
| -rw-r--r-- | sys/dev/acpica/acpi_timer.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpi_timer.c b/sys/dev/acpica/acpi_timer.c index 6117a6f9d5e28..1fa9b8956bbee 100644 --- a/sys/dev/acpica/acpi_timer.c +++ b/sys/dev/acpica/acpi_timer.c @@ -131,9 +131,10 @@ test_counter() n = 0; else n = 1; - printf("ACPI timer looks %s min = %d, max = %d, width = %d\n", - n ? "GOOD" : "BAD ", - min, max, max - min + 1); + if (bootverbose) + printf("ACPI timer looks %s min = %d, max = %d, width = %d\n", + n ? "GOOD" : "BAD ", + min, max, max - min + 1); return (n); } |
