Mesa (master): panfrost: Use the correct type for the bo_handle array

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Sep 18 09:05:31 UTC 2019


Module: Mesa
Branch: master
Commit: a94d0280652d534d379111e1bf164450079510cf
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a94d0280652d534d379111e1bf164450079510cf

Author: Boris Brezillon <boris.brezillon at collabora.com>
Date:   Sun Sep 15 21:06:58 2019 +0200

panfrost: Use the correct type for the bo_handle array

The DRM driver expects an array of u32, let's use the correct type, even
if using an int works in practice because it's still a 32-bit integer.

Signed-off-by: Boris Brezillon <boris.brezillon at collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>

---

 src/gallium/drivers/panfrost/pan_drm.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/gallium/drivers/panfrost/pan_drm.c b/src/gallium/drivers/panfrost/pan_drm.c
index 8b8e38f0380..ada6221850c 100644
--- a/src/gallium/drivers/panfrost/pan_drm.c
+++ b/src/gallium/drivers/panfrost/pan_drm.c
@@ -232,7 +232,8 @@ panfrost_drm_submit_batch(struct panfrost_batch *batch, u64 first_job_desc,
         struct pipe_context *gallium = (struct pipe_context *) ctx;
         struct panfrost_screen *screen = pan_screen(gallium->screen);
         struct drm_panfrost_submit submit = {0,};
-        int *bo_handles, ret;
+        uint32_t *bo_handles;
+        int ret;
 
         submit.in_syncs = (u64) (uintptr_t) &ctx->out_sync;
         submit.in_sync_count = 1;




More information about the mesa-commit mailing list