summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/nouveau/drm
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2012-02-16 22:08:41 +1000
committerBen Skeggs <bskeggs@redhat.com>2012-04-14 02:56:30 +1000
commit66c7dc5688bcd5ff9c596f4c410aee574ea2428a (patch)
treebf81b2190f93b4b1a9a7a8d2c41c7b6569810f59 /src/gallium/winsys/nouveau/drm
parentf3d8bd3f7b9f5c6387cd5e629a82db9ad9a1e652 (diff)
nvfx: completely remove this driver (GeForce FX/6/7)
This driver hasn't been maintained properly for a very long time, and for many very good reasons. It's horrible. A new driver supporting these chipsets will appear with the commits that port vieux/nv50/nvc0 to libdrm_nouveau-2.0. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'src/gallium/winsys/nouveau/drm')
-rw-r--r--src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c b/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
index 084eda96b2a..0cbcc4b2a93 100644
--- a/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
+++ b/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
@@ -25,11 +25,13 @@ nouveau_drm_screen_create(int fd)
return NULL;
switch (dev->chipset & 0xf0) {
+#if 0
case 0x30:
case 0x40:
case 0x60:
- init = nvfx_screen_create;
+ init = nv30_screen_create;
break;
+#endif
case 0x50:
case 0x80:
case 0x90: