diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-07-26 20:36:42 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-07-26 20:36:42 +0000 |
commit | 2f730a1ae2d91d613e9622b54c5ed47666f02131 (patch) | |
tree | f2920044296a8965930b77182cd499bc39cb550c | |
parent | 911b2c4eee4e48b6fcc04586733e4836cd15984d (diff) |
Recognize additional gem pci id, from NetBSD.
-rw-r--r-- | sys/dev/pci/if_gem_pci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_gem_pci.c b/sys/dev/pci/if_gem_pci.c index da6e226db4d..bf178532c69 100644 --- a/sys/dev/pci/if_gem_pci.c +++ b/sys/dev/pci/if_gem_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_gem_pci.c,v 1.9 2002/03/15 21:35:28 jason Exp $ */ +/* $OpenBSD: if_gem_pci.c,v 1.10 2002/07/26 20:36:41 drahn Exp $ */ /* $NetBSD: if_gem_pci.c,v 1.1 2001/09/16 00:11:42 eeh Exp $ */ /* @@ -110,7 +110,8 @@ gem_match_pci(parent, cf, aux) if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_APPLE && (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_GMAC2 || + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_GMAC3)) return (1); return (0); |