diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-19 19:32:04 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2007-05-19 19:32:04 +0000 |
commit | 258e99dd6167909ae0237a8eb4614f17bdaf6a4c (patch) | |
tree | e440038f014daa13b720e293f666af977b673265 /sys/arch/amd64/pci | |
parent | a2d692adc2fadb4b31594731826e41e49f0180fa (diff) |
(disabled) option for PCIAGP. at least lets i945 chipsets work
ok dim
Diffstat (limited to 'sys/arch/amd64/pci')
-rw-r--r-- | sys/arch/amd64/pci/pchb.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/amd64/pci/pchb.c b/sys/arch/amd64/pci/pchb.c index 4e2b5734c8d..b2fbf898162 100644 --- a/sys/arch/amd64/pci/pchb.c +++ b/sys/arch/amd64/pci/pchb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchb.c,v 1.5 2007/01/15 23:19:05 jsg Exp $ */ +/* $OpenBSD: pchb.c,v 1.6 2007/05/19 19:32:03 tedu Exp $ */ /* $NetBSD: pchb.c,v 1.1 2003/04/26 18:39:50 fvdl Exp $ */ /*- @@ -130,6 +130,12 @@ pchbattach(struct device *parent, struct device *self, void *aux) pchb_amd64ht_attach(self, pa, i); break; } + break; + case PCI_VENDOR_INTEL: +#ifdef PCIAGP + pciagp_set_pchb(pa); +#endif + break; } } |