diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2011-11-28 16:19:09 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-12-19 18:06:01 +0400 |
commit | ef5ab24bd3373941bd27e371512c0009eb11581c (patch) | |
tree | d8ef972036a67af5e8760781d15b2be5fa8a7c9c /drivers/gpu/drm/vmwgfx | |
parent | ebd4c6f6261c96d1cf9f004965384d57c4202fd6 (diff) | |
download | linux-ef5ab24bd3373941bd27e371512c0009eb11581c.tar.xz |
vmwgfx: Remove dmabuf check in present ioctl
Doesn't protect any error code and only gets in the way of debugging.
Signed-off-by: Jakob Bornecrantz <jakob@vmware.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/vmwgfx')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c index 1edb63ec3f34..66917c6c3813 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c @@ -172,13 +172,7 @@ int vmw_present_ioctl(struct drm_device *dev, void *data, ret = -EINVAL; goto out_no_fb; } - vfb = vmw_framebuffer_to_vfb(obj_to_fb(obj)); - if (!vfb->dmabuf) { - DRM_ERROR("Framebuffer not dmabuf backed.\n"); - ret = -EINVAL; - goto out_no_fb; - } ret = ttm_read_lock(&vmaster->lock, true); if (unlikely(ret != 0)) |