diff options
author | 2009-01-03 13:07:15 +0000 | |
---|---|---|
committer | 2009-01-03 13:07:15 +0000 | |
commit | 90a39566f5ddaa2d223fa6f0913998b66b04e435 (patch) | |
tree | 2736b8901b6d47d4fb6da19beda9ad67b3eb6be2 | |
parent | reintroduce extra malloc protections, but avoiding the use of (diff) | |
download | wireguard-openbsd-90a39566f5ddaa2d223fa6f0913998b66b04e435.tar.xz wireguard-openbsd-90a39566f5ddaa2d223fa6f0913998b66b04e435.zip |
Attach agp(4) to the Intel 946GZ integrated video.
Tested on Asus P5B-MX motherboard.
ok kettenis@, oga@
-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 39c5ff52ac8..e27b9726607 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.44 2008/12/24 05:42:58 oga Exp $ */ +/* $OpenBSD: agp_i810.c,v 1.45 2009/01/03 13:07:15 kevlo Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -142,6 +142,8 @@ agp_i810_get_chiptype(struct pci_attach_args *pa) case PCI_PRODUCT_INTEL_82945GME_IGD_1: return (CHIP_I915); break; + case PCI_PRODUCT_INTEL_82946GZ_IGD_1: + case PCI_PRODUCT_INTEL_82946GZ_IGD_2: case PCI_PRODUCT_INTEL_82Q965_IGD_1: case PCI_PRODUCT_INTEL_82Q965_IGD_2: case PCI_PRODUCT_INTEL_82G965_IGD_1: |