Commit 96c594ba authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Sean Paul

drm/qxl: squash lines for simple wrapper functions

Remove unneeded variables and assignments.
Reviewed-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
Link: http://patchwork.freedesktop.org/patch/msgid/1473863952-7658-5-git-send-email-yamada.masahiro@socionext.com
parent 03d6356d
...@@ -57,11 +57,8 @@ static struct qxl_rect *drawable_set_clipping(struct qxl_device *qdev, ...@@ -57,11 +57,8 @@ static struct qxl_rect *drawable_set_clipping(struct qxl_device *qdev,
static int static int
alloc_drawable(struct qxl_device *qdev, struct qxl_release **release) alloc_drawable(struct qxl_device *qdev, struct qxl_release **release)
{ {
int ret; return qxl_alloc_release_reserved(qdev, sizeof(struct qxl_drawable),
ret = qxl_alloc_release_reserved(qdev, sizeof(struct qxl_drawable), QXL_RELEASE_DRAWABLE, release, NULL);
QXL_RELEASE_DRAWABLE, release,
NULL);
return ret;
} }
static void static void
......
...@@ -203,12 +203,9 @@ qxl_release_free(struct qxl_device *qdev, ...@@ -203,12 +203,9 @@ qxl_release_free(struct qxl_device *qdev,
static int qxl_release_bo_alloc(struct qxl_device *qdev, static int qxl_release_bo_alloc(struct qxl_device *qdev,
struct qxl_bo **bo) struct qxl_bo **bo)
{ {
int ret;
/* pin releases bo's they are too messy to evict */ /* pin releases bo's they are too messy to evict */
ret = qxl_bo_create(qdev, PAGE_SIZE, false, true, return qxl_bo_create(qdev, PAGE_SIZE, false, true,
QXL_GEM_DOMAIN_VRAM, NULL, QXL_GEM_DOMAIN_VRAM, NULL, bo);
bo);
return ret;
} }
int qxl_release_list_add(struct qxl_release *release, struct qxl_bo *bo) int qxl_release_list_add(struct qxl_release *release, struct qxl_bo *bo)
......
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