mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
drm/qxl: simplify the return expression of qxl_plane_prepare_fb()
Simplify the return expression. Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com> Link: http://patchwork.freedesktop.org/patch/msgid/20200921131022.91649-1-miaoqinglang@huawei.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
378f257d58
commit
79b4d4d26b
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user