aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_ioctl.c
diff options
context:
space:
mode:
authorDaniel Stone <daniels@collabora.com>2015-06-23 14:18:58 +0100
committerDave Airlie <airlied@redhat.com>2015-06-24 11:21:35 +1000
commit8b72ce158cf0dba443e36fc66e0bb29c2580e0b6 (patch)
treebfd1263f9b01180cf183e683775c0cecbf815960 /drivers/gpu/drm/drm_ioctl.c
parentdrm/vgem: Set unique to "vgem" (diff)
downloadlinux-dev-8b72ce158cf0dba443e36fc66e0bb29c2580e0b6.tar.xz
linux-dev-8b72ce158cf0dba443e36fc66e0bb29c2580e0b6.zip
drm: Always enable atomic API
Now that the interface has been proven by a port of Weston (using all atomic features including TEST_ONLY), remove the module parameter guarding the atomic API from being exposed, and let it run free in the wild. Signed-off-by: Daniel Stone <daniels@collabora.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to '')
-rw-r--r--drivers/gpu/drm/drm_ioctl.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/drm_ioctl.c b/drivers/gpu/drm/drm_ioctl.c
index 9bac1b7479af..e4beca57d58e 100644
--- a/drivers/gpu/drm/drm_ioctl.c
+++ b/drivers/gpu/drm/drm_ioctl.c
@@ -350,9 +350,6 @@ drm_setclientcap(struct drm_device *dev, void *data, struct drm_file *file_priv)
file_priv->universal_planes = req->value;
break;
case DRM_CLIENT_CAP_ATOMIC:
- /* for now, hide behind experimental drm.atomic moduleparam */
- if (!drm_atomic)
- return -EINVAL;
if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
return -EINVAL;
if (req->value > 1)