summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/vmwgfx
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2013-10-17 13:35:05 +0300
committerDave Airlie <airlied@redhat.com>2013-11-06 13:25:21 +1000
commit4ae87ff030fb42309c88ef1bc826618e2e4e9be4 (patch)
tree33bfab264427d734a35b25b48260722db5fbfd1b /drivers/gpu/drm/vmwgfx
parent10e10d34eec680490ccba7f9d53ffd0816f107f6 (diff)
downloadlinux-stable-4ae87ff030fb42309c88ef1bc826618e2e4e9be4.tar.gz
linux-stable-4ae87ff030fb42309c88ef1bc826618e2e4e9be4.tar.bz2
linux-stable-4ae87ff030fb42309c88ef1bc826618e2e4e9be4.zip
drm/vmwgfx: Return -ENOENT when a mode object can't be found
Let's be a bit more consistent with our error values. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/vmwgfx')
-rw-r--r--drivers/gpu/drm/vmwgfx/vmwgfx_kms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
index fc43c0601236..ecb3d867b426 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
@@ -1508,7 +1508,7 @@ int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
obj = drm_mode_object_find(dev, arg->crtc_id, DRM_MODE_OBJECT_CRTC);
if (!obj) {
- ret = -EINVAL;
+ ret = -ENOENT;
goto out;
}