Skip to content

Commit 341917f

Browse files
elfringthierryreding
authored andcommitted
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: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Thierry Reding <treding@nvidia.com>
1 parent 93ec302 commit 341917f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/host1x/job.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ static unsigned int pin_job(struct host1x_job *job)
225225
return 0;
226226
}
227227

228-
static unsigned int do_relocs(struct host1x_job *job, struct host1x_bo *cmdbuf)
228+
static int do_relocs(struct host1x_job *job, struct host1x_bo *cmdbuf)
229229
{
230230
int i = 0;
231231
u32 last_page = ~0;

0 commit comments

Comments
 (0)