summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/exynos/exynos_drm_gem.c
diff options
context:
space:
mode:
authorJoonyoung Shim <jy0922.shim@samsung.com>2015-07-28 17:53:27 +0900
committerInki Dae <inki.dae@samsung.com>2015-08-16 14:18:10 +0900
commiteb57da880b00b6c68f971e077ff3e4db9ef0deae (patch)
treede1f0a1661dd0ab28f98d230ec1bc5dc8bd8631a /drivers/gpu/drm/exynos/exynos_drm_gem.c
parent211b8878c13fbd5f8ae8a7b68798d178cb5346b4 (diff)
drm/exynos: remove function roundup_gem_size
The function roundup_gem_size can be merged in exynos_drm_gem_create. Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_gem.c')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_gem.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_gem.c b/drivers/gpu/drm/exynos/exynos_drm_gem.c
index 327edafd48ab..2c9a0752298c 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_gem.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_gem.c
@@ -20,13 +20,6 @@
#include "exynos_drm_buf.h"
#include "exynos_drm_iommu.h"
-static unsigned long roundup_gem_size(unsigned long size, unsigned int flags)
-{
- /* TODO */
-
- return roundup(size, PAGE_SIZE);
-}
-
static int exynos_drm_gem_handle_create(struct drm_gem_object *obj,
struct drm_file *file_priv,
unsigned int *handle)
@@ -148,7 +141,7 @@ struct exynos_drm_gem_obj *exynos_drm_gem_create(struct drm_device *dev,
return ERR_PTR(-EINVAL);
}
- size = roundup_gem_size(size, flags);
+ size = roundup(size, PAGE_SIZE);
buf = exynos_drm_init_buf(dev, size);
if (!buf)