Commit 21e2eae4 authored by Vasiliy Kulikov's avatar Vasiliy Kulikov Committed by Dave Airlie

drm: radeon: fix error value sign

enable_vblank implementations should use negative result to indicate error.
radeon_enable_vblank() returns EINVAL in this case.  Change this to -EINVAL.
Signed-off-by: default avatarVasiliy Kulikov <segoon@openwall.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 16790569
...@@ -76,7 +76,7 @@ int radeon_enable_vblank(struct drm_device *dev, int crtc) ...@@ -76,7 +76,7 @@ int radeon_enable_vblank(struct drm_device *dev, int crtc)
default: default:
DRM_ERROR("tried to enable vblank on non-existent crtc %d\n", DRM_ERROR("tried to enable vblank on non-existent crtc %d\n",
crtc); crtc);
return EINVAL; return -EINVAL;
} }
} else { } else {
switch (crtc) { switch (crtc) {
...@@ -89,7 +89,7 @@ int radeon_enable_vblank(struct drm_device *dev, int crtc) ...@@ -89,7 +89,7 @@ int radeon_enable_vblank(struct drm_device *dev, int crtc)
default: default:
DRM_ERROR("tried to enable vblank on non-existent crtc %d\n", DRM_ERROR("tried to enable vblank on non-existent crtc %d\n",
crtc); crtc);
return EINVAL; return -EINVAL;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment