Recognize the Intrepid2 gem. Needed at least on the last PowerBook G4.

This commit is contained in:
aymeric 2007-06-25 11:11:00 +00:00
parent 0f53ecfb54
commit beb9020c42
1 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_gem_pci.c,v 1.22 2006/11/24 13:01:07 martin Exp $ */
/* $NetBSD: if_gem_pci.c,v 1.23 2007/06/25 11:11:00 aymeric Exp $ */
/*
*
@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_gem_pci.c,v 1.22 2006/11/24 13:01:07 martin Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_gem_pci.c,v 1.23 2007/06/25 11:11:00 aymeric Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -111,7 +111,8 @@ gem_match_pci(parent, cf, aux)
(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_K2_GMAC))
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_K2_GMAC ||
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_INTREPID2_GMAC))
return (1);