1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Make the bootverbose output from qualitydetermination of the ACPI timer

take up only one line.
This commit is contained in:
Poul-Henning Kamp 2004-11-03 09:09:13 +00:00
parent e93a5ce092
commit 2a921b0543
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=137151

View File

@ -174,8 +174,12 @@ acpi_timer_probe(device_t dev)
* the timer multiple times to get a consistent value before returning.
*/
j = 0;
if (bootverbose)
printf("ACPI timer:");
for (i = 0; i < 10; i++)
j += acpi_timer_test();
if (bootverbose)
printf(" -> %d\n", j);
if (j == 10) {
acpi_timer_timecounter.tc_name = "ACPI-fast";
acpi_timer_timecounter.tc_get_timecount = acpi_timer_get_timecount;
@ -323,11 +327,8 @@ acpi_timer_test()
n = 0;
else
n = 1;
if (bootverbose) {
printf("ACPI timer looks %s min = %d, max = %d, width = %d\n",
n ? "GOOD" : "BAD ",
min, max, max - min);
}
if (bootverbose)
printf(" %d/%d", n, max-min);
return (n);
}