mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-05 14:14:54 +00:00
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: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
ba73fbc2ca
commit
3880e95f27
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ struct host1x_job_gather {
|
|||
u32 words;
|
||||
dma_addr_t base;
|
||||
struct host1x_bo *bo;
|
||||
int offset;
|
||||
u32 offset;
|
||||
bool handled;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue