From 8137f06eac3584352ca56fc04cb02f71ed2e99b5 Mon Sep 17 00:00:00 2001 From: drochner Date: Wed, 14 Jul 1999 09:18:20 +0000 Subject: [PATCH] recognize SIS 85C503 as PCI-ISA bridge, from Gregory McGarry per PR port-i386/7972 --- sys/arch/i386/pci/pcib.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sys/arch/i386/pci/pcib.c b/sys/arch/i386/pci/pcib.c index b88cf2b6f3c2..0e1742faa525 100644 --- a/sys/arch/i386/pci/pcib.c +++ b/sys/arch/i386/pci/pcib.c @@ -1,4 +1,4 @@ -/* $NetBSD: pcib.c,v 1.23 1998/10/26 03:47:19 enami Exp $ */ +/* $NetBSD: pcib.c,v 1.24 1999/07/14 09:18:20 drochner Exp $ */ /*- * Copyright (c) 1996, 1998 The NetBSD Foundation, Inc. @@ -143,6 +143,15 @@ pcibmatch(parent, match, aux) */ return (1); } + case PCI_VENDOR_SIS: + switch (PCI_PRODUCT(pa->pa_id)) { + case PCI_PRODUCT_SIS_85C503: + /* + * The SIS 85C503 identifies itself as a + * miscellaneous prehistoric. + */ + return (1); + } break; }