diff options
| author | aymeric <aymeric@NetBSD.org> | 2008-01-19 15:56:52 +0000 |
|---|---|---|
| committer | aymeric <aymeric@NetBSD.org> | 2008-01-19 15:56:52 +0000 |
| commit | 8a162df73e00b955d58f5d556c3c8a20802901cd (patch) | |
| tree | 46029c0533d47f43e9028d44be9d1a2c66ab3e27 /sys/dev | |
| parent | 7e076be4ab647676c36f4c5566cd9a4e4b071d72 (diff) | |
recognize (again) the Intrepid 2 gem adapter in the Powerbook5,8
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/if_gem_pci.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pci/if_gem_pci.c b/sys/dev/pci/if_gem_pci.c index ad98bad1079..01592c7e4ff 100644 --- a/sys/dev/pci/if_gem_pci.c +++ b/sys/dev/pci/if_gem_pci.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_gem_pci.c,v 1.25 2008/01/05 20:30:22 jdc Exp $ */ +/* $NetBSD: if_gem_pci.c,v 1.26 2008/01/19 15:56:52 aymeric Exp $ */ /* * @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_gem_pci.c,v 1.25 2008/01/05 20:30:22 jdc Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_gem_pci.c,v 1.26 2008/01/19 15:56:52 aymeric Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -219,7 +219,8 @@ gem_attach_pci(parent, self, aux) if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_GMAC || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_GMAC2 || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_GMAC3 || - PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_SHASTA_GMAC) + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_SHASTA_GMAC || + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_INTREPID2_GMAC) sc->sc_variant = GEM_APPLE_GMAC; if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_K2_GMAC) sc->sc_variant = GEM_APPLE_K2_GMAC; |
