Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+1 -1
+1 -1
drivers/gpu/host1x/job.h
··· 23 23 u32 words; 24 24 dma_addr_t base; 25 25 struct host1x_bo *bo; 26 - int offset; 26 + u32 offset; 27 27 bool handled; 28 28 }; 29 29