Fix some obvious bugs.

main
Thomas Hellstrom 2007-06-12 12:30:33 +02:00
parent b6b5df24b9
commit f984b1b8d1
2 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -733,7 +733,7 @@ typedef struct drm_fence_arg {
/* Mask: Make sure the buffer is in cached memory when mapped for reading.
* Flags: Acknowledge.
*/
#define DRM_BO_FLAG_READ_CACHED (1ULL << 16)
#define DRM_BO_FLAG_READ_CACHED (1ULL << 19)
/* Mask: Force DRM_BO_FLAG_CACHED flag strictly also if it is set.
* Flags: Acknowledge.