]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
gpu: host1x: Use a signed return type for do_relocs()
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 19 Dec 2015 11:48:31 +0000 (12:48 +0100)
committerThierry Reding <treding@nvidia.com>
Mon, 25 Jan 2016 14:03:13 +0000 (15:03 +0100)
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>
drivers/gpu/host1x/job.c

index 63bd63f3c7dfd2da2fd3d9ae58bba1473bceb70b..1919aab88c3f412a10fa22fd5d85557f0e38a9a0 100644 (file)
@@ -225,7 +225,7 @@ unpin:
        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;
        u32 last_page = ~0;