diff options
author | Ian Romanick <idr@us.ibm.com> | 2005-05-27 23:42:11 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2005-05-27 23:42:11 +0000 |
commit | 4a84416c458027462ee6112a5fa442415597f6c2 (patch) | |
tree | cd39aea11afea9b04442e5a818b220e40b3c70b9 /bsd-core/i915_drv.c | |
parent | c9abd2fec509c271339d1ca3addd95df884df80a (diff) |
Modify drm_driver::device_is_agp to return a tri-state value to indicate
that a device absolutely is, absolutely is not, or may or may not be
AGP. Modify the i915 DRM to use this to force all i9x5 devices to be
"AGP" (even the PCI-e devices).
Reported by: Lukas Hejtmanek
Diffstat (limited to 'bsd-core/i915_drv.c')
-rw-r--r-- | bsd-core/i915_drv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bsd-core/i915_drv.c b/bsd-core/i915_drv.c index bb674fa6..e2c58c7f 100644 --- a/bsd-core/i915_drv.c +++ b/bsd-core/i915_drv.c @@ -48,6 +48,7 @@ static void i915_configure(drm_device_t *dev) dev->dev_priv_size = 1; /* No dev_priv */ dev->prerelease = i915_driver_prerelease; dev->pretakedown = i915_driver_pretakedown; + dev->device_is_agp = i915_driver_device_is_agp, dev->irq_preinstall = i915_driver_irq_preinstall; dev->irq_postinstall = i915_driver_irq_postinstall; dev->irq_uninstall = i915_driver_irq_uninstall; |