1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

Move a warning about LINT pins configured with a level trigger under

bootverbose.
This commit is contained in:
John Baldwin 2014-02-05 18:11:46 +00:00
parent 484e5bdd2b
commit 5c039412a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=261519

View File

@ -199,7 +199,7 @@ lvt_mode(struct lapic *la, u_int pin, uint32_t value)
case APIC_LVT_DM_SMI:
case APIC_LVT_DM_INIT:
case APIC_LVT_DM_EXTINT:
if (!lvt->lvt_edgetrigger) {
if (!lvt->lvt_edgetrigger && bootverbose) {
printf("lapic%u: Forcing LINT%u to edge trigger\n",
la->la_id, pin);
value |= APIC_LVT_TM;