summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/tdfx_drv.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/pci/drm/tdfx_drv.c')
-rw-r--r--sys/dev/pci/drm/tdfx_drv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/tdfx_drv.c b/sys/dev/pci/drm/tdfx_drv.c
index ae739197ae4..46ab4a88e82 100644
--- a/sys/dev/pci/drm/tdfx_drv.c
+++ b/sys/dev/pci/drm/tdfx_drv.c
@@ -78,7 +78,8 @@ tdfxdrm_attach(struct device *parent, struct device *self, void *aux)
struct tdfxdrm_softc *dev_priv = (struct tdfxdrm_softc *)self;
struct pci_attach_args *pa = aux;
- dev_priv->drmdev = drm_attach_mi(&tdfxdrm_driver, pa->pa_dmat, pa, self);
+ /* never agp */
+ dev_priv->drmdev = drm_attach_mi(&tdfxdrm_driver, pa->pa_dmat, pa, 0, self);
}
struct cfattach tdfxdrm_ca = {