Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/arch/alpha/pci Pull up revision 1.27 (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/ad76d81c704c
branches:  netbsd-1-4
changeset: 469719:ad76d81c704c
user:      he <he%NetBSD.org@localhost>
date:      Sat Nov 20 17:32:38 1999 +0000

description:
Pull up revision 1.27 (requested by lukem):
  Add support for the PCI<->ISA bridge in the DS10, allowing it to
  boot.

diffstat:

 sys/arch/alpha/pci/sio.c |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (29 lines):

diff -r 748092c399e7 -r ad76d81c704c sys/arch/alpha/pci/sio.c
--- a/sys/arch/alpha/pci/sio.c  Sat Nov 20 17:30:54 1999 +0000
+++ b/sys/arch/alpha/pci/sio.c  Sat Nov 20 17:32:38 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sio.c,v 1.26 1998/06/09 18:49:33 thorpej Exp $ */
+/* $NetBSD: sio.c,v 1.26.8.1 1999/11/20 17:32:38 he Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -29,7 +29,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.26 1998/06/09 18:49:33 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.26.8.1 1999/11/20 17:32:38 he Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -111,6 +111,10 @@
            PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_SIO)
                return (1);
 
+       if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI &&
+           PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1543)
+               return (1);
+
        return (0);
 }
 



Home | Main Index | Thread Index | Old Index