diff options
author | Bernd Ahlers <bernd@cvs.openbsd.org> | 2008-07-07 07:54:49 +0000 |
---|---|---|
committer | Bernd Ahlers <bernd@cvs.openbsd.org> | 2008-07-07 07:54:49 +0000 |
commit | 73e0b9007b90eb93b709fd9549bce7ebce2aab89 (patch) | |
tree | db02e0875a4a4310522d867f723f5569088d7e9f /sys/arch/amd64 | |
parent | 8e0c68b2faffa5e25d04e868c89f37d993130577 (diff) |
Add AGP and hostbridge support for the Intel 82945GME chipset.
ok jsg@
Diffstat (limited to 'sys/arch/amd64')
-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 fbd78e4f380..84d8b4cf56d 100644 --- a/sys/arch/amd64/pci/pchb.c +++ b/sys/arch/amd64/pci/pchb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchb.c,v 1.24 2008/06/26 05:42:09 ray Exp $ */ +/* $OpenBSD: pchb.c,v 1.25 2008/07/07 07:54:48 bernd Exp $ */ /* $NetBSD: pchb.c,v 1.1 2003/04/26 18:39:50 fvdl Exp $ */ /* * Copyright (c) 2000 Michael Shalayeff @@ -171,6 +171,7 @@ pchbattach(struct device *parent, struct device *self, void *aux) /* AGP only */ case PCI_PRODUCT_INTEL_82915GM_HB: case PCI_PRODUCT_INTEL_82945GM_HB: + case PCI_PRODUCT_INTEL_82945GME_HB: case PCI_PRODUCT_INTEL_82G965_HB: case PCI_PRODUCT_INTEL_82Q965_HB: case PCI_PRODUCT_INTEL_82GM965_HB: |