diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 2b36f8fb0caa..c1b6873214aa 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pci.c,v 1.38 1995/12/15 13:40:20 se Exp $ +** $Id: pci.c,v 1.39 1995/12/16 00:27:46 bde Exp $ ** ** General subroutines for the PCI bus. ** pci_configure () @@ -365,7 +365,7 @@ pci_bus_config (void) */ pci_bridge_config (); - printf ("Probing for devices on the PCI bus:\n"); + printf ("Probing for devices on PCI bus %d:\n", pcicb->pcicb_bus); #ifndef PCI_QUIET if (bootverbose && !pci_info_done) { pci_info_done=1; @@ -604,7 +604,7 @@ pci_bus_config (void) if (bootverbose) { printf ("\tbridge from pci%d to pci%d through %d.\n", primary, secondary, subordinate); - printf ("\tmapping regs: io:%08lx mem:%08lx pmem:%08lx", + printf ("\tmapping regs: io:%08lx mem:%08lx pmem:%08lx\n", pci_conf_read (tag, PCI_PCI_BRIDGE_IO_REG), pci_conf_read (tag, PCI_PCI_BRIDGE_MEM_REG), pci_conf_read (tag, PCI_PCI_BRIDGE_PMEM_REG)); diff --git a/sys/pci/pci.c b/sys/pci/pci.c index 2b36f8fb0caa..c1b6873214aa 100644 --- a/sys/pci/pci.c +++ b/sys/pci/pci.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pci.c,v 1.38 1995/12/15 13:40:20 se Exp $ +** $Id: pci.c,v 1.39 1995/12/16 00:27:46 bde Exp $ ** ** General subroutines for the PCI bus. ** pci_configure () @@ -365,7 +365,7 @@ pci_bus_config (void) */ pci_bridge_config (); - printf ("Probing for devices on the PCI bus:\n"); + printf ("Probing for devices on PCI bus %d:\n", pcicb->pcicb_bus); #ifndef PCI_QUIET if (bootverbose && !pci_info_done) { pci_info_done=1; @@ -604,7 +604,7 @@ pci_bus_config (void) if (bootverbose) { printf ("\tbridge from pci%d to pci%d through %d.\n", primary, secondary, subordinate); - printf ("\tmapping regs: io:%08lx mem:%08lx pmem:%08lx", + printf ("\tmapping regs: io:%08lx mem:%08lx pmem:%08lx\n", pci_conf_read (tag, PCI_PCI_BRIDGE_IO_REG), pci_conf_read (tag, PCI_PCI_BRIDGE_MEM_REG), pci_conf_read (tag, PCI_PCI_BRIDGE_PMEM_REG));