summaryrefslogtreecommitdiff
path: root/src/gallium/targets/egl/pipe_r600.c
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-08-23 23:03:51 +0800
committerChia-I Wu <olv@lunarg.com>2010-08-24 11:50:36 +0800
commit65741c596f9c89ee25dfa4eb910a48140d22515b (patch)
tree49a626561c4573ca0d94e5b2ec61ac2d49d36933 /src/gallium/targets/egl/pipe_r600.c
parent0ba164365875bba0150937c7e1a81cfa06d9f9b4 (diff)
targets/egl: Check against drm_driver_descriptor::name.
drm_driver_descriptor::driver_name is defined to be the name of the kernel module. We should check against drm_driver_descriptor::name instead of drm_driver_descriptor::driver_name.
Diffstat (limited to 'src/gallium/targets/egl/pipe_r600.c')
-rw-r--r--src/gallium/targets/egl/pipe_r600.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/egl/pipe_r600.c b/src/gallium/targets/egl/pipe_r600.c
index c35a0b09b9..486a659258 100644
--- a/src/gallium/targets/egl/pipe_r600.c
+++ b/src/gallium/targets/egl/pipe_r600.c
@@ -24,4 +24,4 @@ create_screen(int fd)
}
PUBLIC
-DRM_DRIVER_DESCRIPTOR("r600", "r600", create_screen)
+DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen)