diff options
author | Dave Airlie <airlied@redhat.com> | 2020-08-04 05:55:37 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2020-08-06 05:16:29 +0300 |
commit | 9c4cbb3a66e05270caaec7bea8fd5c04a47e42ac (patch) | |
tree | 68805be261b864f8417291d0c2640d5e17ea520e /drivers/gpu/drm/qxl/qxl_ioctl.c | |
parent | bd549d35b4be065c10fbff13256c96877a4f8fac (diff) | |
download | linux-9c4cbb3a66e05270caaec7bea8fd5c04a47e42ac.tar.xz |
qxl/ttm: drop the unusued no wait flag to reserve function
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200804025632.3868079-5-airlied@gmail.com
Diffstat (limited to 'drivers/gpu/drm/qxl/qxl_ioctl.c')
-rw-r--r-- | drivers/gpu/drm/qxl/qxl_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/qxl/qxl_ioctl.c b/drivers/gpu/drm/qxl/qxl_ioctl.c index 8f605d5cc149..5cea6eea72ab 100644 --- a/drivers/gpu/drm/qxl/qxl_ioctl.c +++ b/drivers/gpu/drm/qxl/qxl_ioctl.c @@ -322,7 +322,7 @@ static int qxl_update_area_ioctl(struct drm_device *dev, void *data, qobj = gem_to_qxl_bo(gobj); - ret = qxl_bo_reserve(qobj, false); + ret = qxl_bo_reserve(qobj); if (ret) goto out; |