exynos_fimg2d: fix cast from pointer to integer of different size
authorDaniel Kurtz <djkurtz@chromium.org>
Thu, 17 Apr 2014 03:54:37 +0000 (11:54 +0800)
committerRob Clark <robclark@freedesktop.org>
Tue, 13 May 2014 03:09:13 +0000 (23:09 -0400)
Fixes two gcc [-Wpointer-to-int-cast] warnings.

Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Acked-by: Inki Dae <inki.dae@samsung.com>
exynos/exynos_fimg2d.c

index cf712a8..0b14618 100644 (file)
@@ -158,8 +158,8 @@ static int g2d_flush(struct g2d_context *ctx)
 
        memset(&cmdlist, 0, sizeof(struct drm_exynos_g2d_set_cmdlist));
 
-       cmdlist.cmd = (unsigned int)&ctx->cmd[0];
-       cmdlist.cmd_buf = (unsigned int)&ctx->cmd_buf[0];
+       cmdlist.cmd = (uint64_t)(uintptr_t)&ctx->cmd[0];
+       cmdlist.cmd_buf = (uint64_t)(uintptr_t)&ctx->cmd_buf[0];
        cmdlist.cmd_nr = ctx->cmd_nr;
        cmdlist.cmd_buf_nr = ctx->cmd_buf_nr;
        cmdlist.event_type = G2D_EVENT_NOT;