summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/pci_pci.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-09-05 17:08:35 +0000
committerjhb <jhb@FreeBSD.org>2002-09-05 17:08:35 +0000
commit1a872debf325d04a7c82a8adce7a7af88d41ddb4 (patch)
tree7cd3adf1decd20a6c4fe01c121d47446a1667b56 /sys/dev/pci/pci_pci.c
parent55985c4b6c74a4581f534911def8a68308e54f11 (diff)
downloadFreeBSD-src-1a872debf325d04a7c82a8adce7a7af88d41ddb4.zip
FreeBSD-src-1a872debf325d04a7c82a8adce7a7af88d41ddb4.tar.gz
Make the printf messages when routing interrupts more consistent in the
various PCI bridge drivers.
Diffstat (limited to 'sys/dev/pci/pci_pci.c')
-rw-r--r--sys/dev/pci/pci_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/pci_pci.c b/sys/dev/pci/pci_pci.c
index f310491..a7ccf6a 100644
--- a/sys/dev/pci/pci_pci.c
+++ b/sys/dev/pci/pci_pci.c
@@ -426,8 +426,8 @@ pcib_route_interrupt(device_t pcib, device_t dev, int pin)
bus = device_get_parent(pcib);
intnum = PCIB_ROUTE_INTERRUPT(device_get_parent(bus), pcib, parent_intpin + 1);
if (PCI_INTERRUPT_VALID(intnum)) {
- device_printf(pcib, "routed slot %d INT%c to irq %d\n", pci_get_slot(dev),
- 'A' + pin - 1, intnum);
+ device_printf(pcib, "slot %d INT%c is routed to irq %d\n",
+ pci_get_slot(dev), 'A' + pin - 1, intnum);
}
return(intnum);
}
OpenPOWER on IntegriCloud