Commit 3880e95f authored by Thierry Reding's avatar Thierry Reding

gpu: host1x: Make gather offsets unsigned

Use the u32 type for the offset in the host1x_job_gather structure for
consistentcy with other structures. Negative offsets don't make sense in
this context.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent ba73fbc2
...@@ -23,7 +23,7 @@ struct host1x_job_gather { ...@@ -23,7 +23,7 @@ struct host1x_job_gather {
u32 words; u32 words;
dma_addr_t base; dma_addr_t base;
struct host1x_bo *bo; struct host1x_bo *bo;
int offset; u32 offset;
bool handled; bool handled;
}; };
......
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