Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/i386/pci recognize SIS 85C503 as PCI-ISA bridge, fr...
details: https://anonhg.NetBSD.org/src/rev/c437a89fc3b5
branches: trunk
changeset: 474643:c437a89fc3b5
user: drochner <drochner%NetBSD.org@localhost>
date: Wed Jul 14 09:18:20 1999 +0000
description:
recognize SIS 85C503 as PCI-ISA bridge, from Gregory McGarry per PR
port-i386/7972
diffstat:
sys/arch/i386/pci/pcib.c | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diffs (25 lines):
diff -r f17e155c851b -r c437a89fc3b5 sys/arch/i386/pci/pcib.c
--- a/sys/arch/i386/pci/pcib.c Tue Jul 13 22:16:48 1999 +0000
+++ b/sys/arch/i386/pci/pcib.c Wed Jul 14 09:18:20 1999 +0000
@@ -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 @@
*/
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;
}
Home |
Main Index |
Thread Index |
Old Index