mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 00:38:48 +02:00
panfrost/drm: Cast pointer to u64 to fix warning
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
This commit is contained in:
parent
756f7b9989
commit
ea2cd73625
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ panfrost_drm_submit_job(struct panfrost_context *ctx, u64 job_desc, int reqs, st
|
|||
struct panfrost_drm *drm = (struct panfrost_drm *)screen->driver;
|
||||
struct drm_panfrost_submit submit = {0,};
|
||||
|
||||
submit.in_syncs = &ctx->out_sync;
|
||||
submit.in_syncs = (u64) (uintptr_t) &ctx->out_sync;
|
||||
submit.in_sync_count = 1;
|
||||
|
||||
submit.out_sync = ctx->out_sync;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue