diff options
author | Dimitry Andric <dim@cvs.openbsd.org> | 2006-05-15 08:27:20 +0000 |
---|---|---|
committer | Dimitry Andric <dim@cvs.openbsd.org> | 2006-05-15 08:27:20 +0000 |
commit | d17282a5c4c496ad608aec15de375acc1c8f9dda (patch) | |
tree | 8f93b855ed72d12ce3e27ee21bd969bc0ad38ce8 /sys/dev/pci/agp_i810.c | |
parent | 1215a49cec600d2c353bfc548b9888f4b9dae0bd (diff) |
Add AGP support for Intel 945G/GM chipsets. The 945GM (mobile) variant
also needs a X.org update, which will go in later.
Tested by a bunch of people; ok deraadt@
Diffstat (limited to 'sys/dev/pci/agp_i810.c')
-rw-r--r-- | sys/dev/pci/agp_i810.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c index 956a999dfab..d818099a0fb 100644 --- a/sys/dev/pci/agp_i810.c +++ b/sys/dev/pci/agp_i810.c @@ -1,4 +1,4 @@ -/* $OpenBSD: agp_i810.c,v 1.12 2006/02/16 19:40:43 matthieu Exp $ */ +/* $OpenBSD: agp_i810.c,v 1.13 2006/05/15 08:27:19 dim Exp $ */ /* $NetBSD: agp_i810.c,v 1.15 2003/01/31 00:07:39 thorpej Exp $ */ /*- @@ -150,6 +150,8 @@ agp_i810_attach(struct vga_pci_softc *sc, struct pci_attach_args *pa, break; case PCI_PRODUCT_INTEL_82915G_IV: case PCI_PRODUCT_INTEL_82915GM_IGD: + case PCI_PRODUCT_INTEL_82945G_IGD_1: + case PCI_PRODUCT_INTEL_82945GM_IGD: isc->chiptype = CHIP_I915; break; } |