summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2006-02-01 15:45:29 +0000
committerjhb <jhb@FreeBSD.org>2006-02-01 15:45:29 +0000
commit16c9ed73d6b803cc7c25cdeec1d82956eb5bc231 (patch)
tree7f7e63d69e06c87fd4f488209e042af6d504d377 /sys/dev/pci
parent41ffd5b92bd381c4a81a8758108bd2811397537e (diff)
downloadFreeBSD-src-16c9ed73d6b803cc7c25cdeec1d82956eb5bc231.zip
FreeBSD-src-16c9ed73d6b803cc7c25cdeec1d82956eb5bc231.tar.gz
Don't add an agp child in vgapci's attach routine if the PCIY_AGP
capability is present as not all devices supported by the agp_i810 driver (such as i915) have the AGP capability. Instead, add an identify routine to the agp_i810 driver that uses the PCI ID to determine if it should create an agp child device.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/vga_pci.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c
index ea7ce33..54424a2 100644
--- a/sys/dev/pci/vga_pci.c
+++ b/sys/dev/pci/vga_pci.c
@@ -70,13 +70,6 @@ vga_pci_attach(device_t dev)
bus_generic_probe(dev);
- /*
- * If AGP capabilities are present on this device, then create
- * an AGP child.
- */
- if (pci_find_extcap(dev, PCIY_AGP, NULL) == 0)
- device_add_child(dev, "agp", -1);
-
/* Always create a drm child for now to make it easier on drm. */
device_add_child(dev, "drm", -1);
bus_generic_attach(dev);
OpenPOWER on IntegriCloud