Drop the 'active-' prefix from the polarity printf to be consistent with

the rest of the interrupt code.
This commit is contained in:
John Baldwin 2005-01-14 18:31:00 +00:00
parent d6e822b2e4
commit 69eeed9abc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=140254

View File

@ -450,7 +450,7 @@ lapic_set_lvt_polarity(u_int apic_id, u_int pin, enum intr_polarity pol)
printf("lapic%u:", apic_id);
}
if (bootverbose)
printf(" LINT%u polarity: active-%s\n", pin,
printf(" LINT%u polarity: %s\n", pin,
pol == INTR_POLARITY_HIGH ? "high" : "low");
return (0);
}