diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2008-03-23 08:36:42 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2008-03-23 08:36:42 +0000 |
commit | 56c57906eecc84e24e6aa7232d952d97dbcf6bdd (patch) | |
tree | 8ad3d610999b5f59fbe844bf4519e7a759a61f55 /sys/arch/amd64/pci | |
parent | 4a6791499b8a09caaff5a0061485ff8ae3229a4d (diff) |
Add AGP support for the Intel G33 chipset.
Tested on i386 with a Gigabyte G33M-DS2R motherboard (Intel GMA 3100).
Based on NetBSD code.
ok oga@
Diffstat (limited to 'sys/arch/amd64/pci')
-rw-r--r-- | sys/arch/amd64/pci/pchb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/amd64/pci/pchb.c b/sys/arch/amd64/pci/pchb.c index 744da8d0866..fbf08804e62 100644 --- a/sys/arch/amd64/pci/pchb.c +++ b/sys/arch/amd64/pci/pchb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchb.c,v 1.19 2008/03/16 19:00:28 oga Exp $ */ +/* $OpenBSD: pchb.c,v 1.20 2008/03/23 08:36:41 damien Exp $ */ /* $NetBSD: pchb.c,v 1.1 2003/04/26 18:39:50 fvdl Exp $ */ /* * Copyright (c) 2000 Michael Shalayeff @@ -179,6 +179,7 @@ pchbattach(struct device *parent, struct device *self, void *aux) case PCI_PRODUCT_INTEL_82G965_HB: case PCI_PRODUCT_INTEL_82Q965_HB: case PCI_PRODUCT_INTEL_82GM965_HB: + case PCI_PRODUCT_INTEL_82G33_HB: has_agp = 1; break; |