summaryrefslogtreecommitdiffstats
path: root/sys/i386/pci/pci_cfgreg.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/i386/pci/pci_cfgreg.c')
-rw-r--r--sys/i386/pci/pci_cfgreg.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/i386/pci/pci_cfgreg.c b/sys/i386/pci/pci_cfgreg.c
index eb6cc27..944d106 100644
--- a/sys/i386/pci/pci_cfgreg.c
+++ b/sys/i386/pci/pci_cfgreg.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: pcibus.c,v 1.43 1999/07/16 01:00:29 msmith Exp $
+ * $Id: pcibus.c,v 1.44 1999/08/04 13:38:24 peter Exp $
*
*/
@@ -274,10 +274,10 @@ nexus_pcib_is_host_bridge(pcicfgregs *cfg,
u_int32_t id, u_int8_t class, u_int8_t subclass,
u_int8_t *busnum)
{
- const char *s = "Host to PCI bridge";
+ const char *s = NULL;
static u_int8_t pxb[4]; /* hack for 450nx */
- if (class != PCIC_BRIDGE || subclass != PCIS_BRIDGE_HOST)
+ if ((class != PCIC_BRIDGE) && (subclass != PCIS_BRIDGE_HOST))
return NULL;
*busnum = 0;
@@ -395,6 +395,12 @@ nexus_pcib_is_host_bridge(pcicfgregs *cfg,
/* just guessing the secondary bus register number ... */
*busnum = pci_cfgread(cfg, 0x45, 1);
break;
+ case 0x884910e0:
+ s = "Integrated Micro Solutions VL Bridge";
+ break;
+ default:
+ s = "Host to PCI bridge";
+ break;
}
return s;
OpenPOWER on IntegriCloud