diff options
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; } } |