diff options
| author | tron <tron@NetBSD.org> | 2003-12-23 19:56:58 +0000 |
|---|---|---|
| committer | tron <tron@NetBSD.org> | 2003-12-23 19:56:58 +0000 |
| commit | 3b56a667e6f617ea26433379cd35cb43cfd0bd10 (patch) | |
| tree | 643b0696834699cee8a36572958a187cf119ad1a /sys/dev | |
| parent | b0b7ac330d70cebd089d2bcd055449dc6ded3bba (diff) | |
Support i82845G/GL based motherboards without an Integrated Graphics
Device. Patch supplied by Nicolas Joly in PR kern/23860.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/agp_i810.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/agp_i810.c b/sys/dev/pci/agp_i810.c index 5c3ec9e712f..efc75abd33a 100644 --- a/sys/dev/pci/agp_i810.c +++ b/sys/dev/pci/agp_i810.c @@ -1,4 +1,4 @@ -/* $NetBSD: agp_i810.c,v 1.20 2003/09/07 15:40:57 tron Exp $ */ +/* $NetBSD: agp_i810.c,v 1.21 2003/12/23 19:56:58 tron Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.20 2003/09/07 15:40:57 tron Exp $"); +__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.21 2003/12/23 19:56:58 tron Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -147,6 +147,7 @@ agp_i810_attach(struct device *parent, struct device *self, void *aux) switch (PCI_PRODUCT(pa->pa_id)) { case PCI_PRODUCT_INTEL_82840_HB: case PCI_PRODUCT_INTEL_82865_HB: + case PCI_PRODUCT_INTEL_82845G_DRAM: return agp_intel_attach(parent, self, aux); } #endif |
