From 674e3eeff5f9221c6174e54e1a91c07f9ce6df93 Mon Sep 17 00:00:00 2001 From: mdodd Date: Mon, 9 Aug 1999 21:11:44 +0000 Subject: chip0: at device 0.0 on pci0 Isn't really that useful. chip0: at device 0.0 on pci0 is more in keeping with the spirit of the rest of the code. Previous behavior with regard to truely unknown bridges unchanged. " Tell you what: you have commit privs now. You do it." --- sys/pci/pcisupport.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/pci') diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c index 1808c3b..27fb628 100644 --- a/sys/pci/pcisupport.c +++ b/sys/pci/pcisupport.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcisupport.c,v 1.122 1999/06/24 04:06:26 jlemon Exp $ +** $Id: pcisupport.c,v 1.123 1999/07/16 01:00:30 msmith Exp $ ** ** Device driver for DEC/INTEL PCI chipsets. ** @@ -696,6 +696,7 @@ pci_bridge_type(device_t dev) case PCIS_BRIDGE_PCMCIA: strcpy(tmpbuf, "PCI to PCMCIA"); break; case PCIS_BRIDGE_NUBUS: strcpy(tmpbuf, "PCI to NUBUS"); break; case PCIS_BRIDGE_CARDBUS: strcpy(tmpbuf, "PCI to CardBus"); break; + case PCIS_BRIDGE_OTHER: strcpy(tmpbuf, "PCI to Other"); break; default: snprintf(tmpbuf, sizeof(tmpbuf), "PCI to 0x%x", pci_get_subclass(dev)); -- cgit v1.1