aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2005-01-14 18:31:00 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2005-01-14 18:31:00 +0000
commit69eeed9abc828f80b8f207d354b4659a1e76f5db (patch)
tree07a414263fc9c48dbbf80cd8eeea5719ba85d4fe
parentd6e822b2e407d9ec1edd73db8c620b5046025b86 (diff)
downloadsrc-69eeed9abc828f80b8f207d354b4659a1e76f5db.tar.gz
src-69eeed9abc828f80b8f207d354b4659a1e76f5db.zip
Drop the 'active-' prefix from the polarity printf to be consistent with
the rest of the interrupt code.
Notes
Notes: svn path=/head/; revision=140254
-rw-r--r--sys/i386/i386/local_apic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/i386/local_apic.c b/sys/i386/i386/local_apic.c
index cc008e6e7e72..4745e7371c56 100644
--- a/sys/i386/i386/local_apic.c
+++ b/sys/i386/i386/local_apic.c
@@ -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);
}