Commit 341917fe authored by Markus Elfring's avatar Markus Elfring Committed by Thierry Reding

gpu: host1x: Use a signed return type for do_relocs()

The return type "unsigned int" was used by the do_relocs() function
despite the fact that it will eventually return a negative error code.
Use a signed integer instead to accomodate for error codes.

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 93ec3029
...@@ -225,7 +225,7 @@ static unsigned int pin_job(struct host1x_job *job) ...@@ -225,7 +225,7 @@ static unsigned int pin_job(struct host1x_job *job)
return 0; return 0;
} }
static unsigned int do_relocs(struct host1x_job *job, struct host1x_bo *cmdbuf) static int do_relocs(struct host1x_job *job, struct host1x_bo *cmdbuf)
{ {
int i = 0; int i = 0;
u32 last_page = ~0; u32 last_page = ~0;
......
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