diff options
author | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2007-06-12 12:30:33 +0200 |
---|---|---|
committer | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2007-06-12 12:30:33 +0200 |
commit | f984b1b8d17f285dfacb593702178f1eb2fdb4ac (patch) | |
tree | 391472b76f73e84a24d896b15663b51511775f10 /linux-core | |
parent | b6b5df24b962c94433afe4d8665b5f145bfa1ad3 (diff) |
Fix some obvious bugs.
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/drm_bo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-core/drm_bo.c b/linux-core/drm_bo.c index b6a31943..a1a27d1e 100644 --- a/linux-core/drm_bo.c +++ b/linux-core/drm_bo.c @@ -1716,13 +1716,13 @@ int drm_bo_op_ioctl(DRM_IOCTL_ARGS) &rep); break; case drm_bo_fence: - ret = drm_bo_lock_test(dev, filp); - if (ret) - break; + ret = -EINVAL; + DRM_ERROR("Function is not implemented yet.\n"); break; case drm_bo_ref_fence: ret = -EINVAL; DRM_ERROR("Function is not implemented yet.\n"); + break; default: ret = -EINVAL; } |