mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-27 12:50:13 +01:00
Fix some obvious bugs.
This commit is contained in:
parent
b6b5df24b9
commit
f984b1b8d1
2 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue