aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2014-02-05 18:11:46 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2014-02-05 18:11:46 +0000
commit5c039412a28232d8510d68772d11bdbc566afd5a (patch)
tree47b68f0691bc5b7b48a38074c054b200009f1b2f
parent484e5bdd2bb59ca12aa3235e5fb2474c6966e193 (diff)
Move a warning about LINT pins configured with a level trigger under
bootverbose.
Notes
Notes: svn path=/head/; revision=261519
-rw-r--r--sys/x86/x86/local_apic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/local_apic.c b/sys/x86/x86/local_apic.c
index c1be18fc7456..6a33cf167ee5 100644
--- a/sys/x86/x86/local_apic.c
+++ b/sys/x86/x86/local_apic.c
@@ -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;