From 2ab420f918996e74bc296611c5a5356a21ea7225 Mon Sep 17 00:00:00 2001 From: chs Date: Sun, 24 Aug 2003 18:02:00 +0000 Subject: [PATCH] recognize the latest version of the GMAC. --- sys/arch/macppc/dev/if_gm.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/arch/macppc/dev/if_gm.c b/sys/arch/macppc/dev/if_gm.c index f879b0fb1888..169764f0e018 100644 --- a/sys/arch/macppc/dev/if_gm.c +++ b/sys/arch/macppc/dev/if_gm.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_gm.c,v 1.21 2003/07/15 02:43:29 lukem Exp $ */ +/* $NetBSD: if_gm.c,v 1.22 2003/08/24 18:02:00 chs Exp $ */ /*- * Copyright (c) 2000 Tsubai Masanari. All rights reserved. @@ -27,7 +27,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_gm.c,v 1.21 2003/07/15 02:43:29 lukem Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_gm.c,v 1.22 2003/08/24 18:02:00 chs Exp $"); #include "opt_inet.h" #include "opt_ns.h" @@ -144,7 +144,8 @@ gmac_match(parent, match, 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;