Commit 79b4d4d2 authored by Qinglang Miao's avatar Qinglang Miao Committed by Gerd Hoffmann

drm/qxl: simplify the return expression of qxl_plane_prepare_fb()

Simplify the return expression.
Signed-off-by: default avatarQinglang Miao <miaoqinglang@huawei.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20200921131022.91649-1-miaoqinglang@huawei.comSigned-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
parent 378f257d
......@@ -768,7 +768,6 @@ static int qxl_plane_prepare_fb(struct drm_plane *plane,
struct drm_gem_object *obj;
struct qxl_bo *user_bo;
struct qxl_surface surf;
int ret;
if (!new_state->fb)
return 0;
......@@ -804,11 +803,7 @@ static int qxl_plane_prepare_fb(struct drm_plane *plane,
}
}
ret = qxl_bo_pin(user_bo);
if (ret)
return ret;
return 0;
return qxl_bo_pin(user_bo);
}
static void qxl_plane_cleanup_fb(struct drm_plane *plane,
......
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