diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-04-22 15:02:36 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-04-22 15:02:36 +0000 |
commit | eaa178b87b2f87320939c2458f912fb09cb4a496 (patch) | |
tree | 580ec0b1eb1a5ed1f7d132c8a082f2bb3740632c /sys/arch/i386/pci | |
parent | 8618b052faf72be464af8a44d50a7a46aaea0fb2 (diff) |
Stop printing the PCI interrupt line programmed by the BIOS for APIC
interrupts. It is irreleveant, confuses people and the information is
available in pcidump(8) output anyway.
ok oga@, jsg@, deraadt@
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r-- | sys/arch/i386/pci/pci_machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/pci/pci_machdep.c b/sys/arch/i386/pci/pci_machdep.c index e928858e394..74af57f3f86 100644 --- a/sys/arch/i386/pci/pci_machdep.c +++ b/sys/arch/i386/pci/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.58 2011/01/10 16:26:27 kettenis Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.59 2011/04/22 15:02:35 kettenis Exp $ */ /* $NetBSD: pci_machdep.c,v 1.28 1997/06/06 23:29:17 thorpej Exp $ */ /*- @@ -609,8 +609,8 @@ pci_intr_string(pci_chipset_tag_t pc, pci_intr_handle_t ih) #if NIOAPIC > 0 if (ih.line & APIC_INT_VIA_APIC) { - snprintf(irqstr, sizeof irqstr, "apic %d int %d (irq %d)", - APIC_IRQ_APIC(ih.line), APIC_IRQ_PIN(ih.line), line); + snprintf(irqstr, sizeof irqstr, "apic %d int %d", + APIC_IRQ_APIC(ih.line), APIC_IRQ_PIN(ih.line)); return (irqstr); } #endif |