diff options
author | Dave Airlie <airlied@redhat.com> | 2009-09-15 01:03:43 +0200 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-09-15 01:03:43 +0200 |
commit | 70ba2a374704e00df8868a7ac3d7350329d28924 (patch) | |
tree | a9582dee5f7401edf2026ed2dd7ab70f5737127c /drivers/gpu/drm/radeon/radeon_drv.c | |
parent | drm/radeon/kms: clear confusion in GART init/deinit path (diff) | |
download | linux-70ba2a374704e00df8868a7ac3d7350329d28924.tar.xz linux-70ba2a374704e00df8868a7ac3d7350329d28924.zip |
drm/radeon/kms: add 32/64 ioctl support.
Although the new radeon driver ioctls don't need this, some of
the drm initialisation ioctls require it, so add this to make them
work.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_drv.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c index 29f040a7861b..50fce498910c 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.c +++ b/drivers/gpu/drm/radeon/radeon_drv.c @@ -286,7 +286,7 @@ static struct drm_driver kms_driver = { .poll = drm_poll, .fasync = drm_fasync, #ifdef CONFIG_COMPAT - .compat_ioctl = NULL, + .compat_ioctl = radeon_kms_compat_ioctl, #endif }, |