summaryrefslogtreecommitdiffstats
path: root/sys/pci/pci.c
diff options
context:
space:
mode:
authorse <se@FreeBSD.org>1995-09-14 13:09:40 +0000
committerse <se@FreeBSD.org>1995-09-14 13:09:40 +0000
commit4480a95449cc8af61613d05ae48fe994d19abb53 (patch)
treeecca08c3a7915c1043719a7ef5adb80d0d2c1c05 /sys/pci/pci.c
parentc162554e6829c9771c8f2a8f6662e097b7040409 (diff)
downloadFreeBSD-src-4480a95449cc8af61613d05ae48fe994d19abb53.zip
FreeBSD-src-4480a95449cc8af61613d05ae48fe994d19abb53.tar.gz
Minor changes to the PCI probe messages.
Diffstat (limited to 'sys/pci/pci.c')
-rw-r--r--sys/pci/pci.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/pci/pci.c b/sys/pci/pci.c
index 3ce2cae..28a331b 100644
--- a/sys/pci/pci.c
+++ b/sys/pci/pci.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pci.c,v 1.28 1995/07/29 18:21:48 davidg Exp $
+** $Id: pci.c,v 1.29 1995/09/07 15:20:53 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@@ -36,8 +36,6 @@
***************************************************************************
*/
-#define __PCI_C__ "pl13 95/03/21"
-
#include <pci.h>
#if NPCI > 0
@@ -366,9 +364,8 @@ pci_bus_config (void)
*/
pci_bridge_config ();
+ printf ("Probing for devices on the PCI bus:\n");
#ifndef PCI_QUIET
- printf ("Probing for devices on the %s%d bus:\n",
- pcibus->pb_name, pcicb->pcicb_bus);
if (bootverbose && !pci_info_done) {
pci_info_done=1;
printf ("\tconfiguration mode %d allows %d devices.\n",
@@ -439,6 +436,7 @@ pci_bus_config (void)
};
pcicb->pcicb_seen |= (1ul << device);
+
/*
** Get and increment the unit.
*/
@@ -835,6 +833,7 @@ pci_bridge_config (void)
pcicb->pcicb_memlimit = pcicb->pcicb_membase+size-1;
}
}
+
/*-----------------------------------------------------------------
**
** The following functions are provided for the device driver
@@ -1622,9 +1621,9 @@ void not_supported (pcici_t tag, u_long type)
*/
if (vp->ident) printf (vp->name);
- else printf ("vendor=0x%lx", type & 0xffff);
+ else printf ("vendor=0x%04lx", type & 0xffff);
- printf (", device=0x%lx", type >> 16);
+ printf (", device=0x%04lx", type >> 16);
data = (pcibus->pb_read(tag, PCI_CLASS_REG) >> 24) & 0xff;
if (data < sizeof(majclasses) / sizeof(majclasses[0]))
OpenPOWER on IntegriCloud