From 69eeed9abc828f80b8f207d354b4659a1e76f5db Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 14 Jan 2005 18:31:00 +0000 Subject: [PATCH] Drop the 'active-' prefix from the polarity printf to be consistent with the rest of the interrupt code. --- sys/i386/i386/local_apic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }