drm/nouveau/drm/nouveau/mmu: fix odd_ptr_err.cocci warnings
authorChristoph Böhmwalder <[email protected]>
Thu, 30 Nov 2017 19:53:54 +0000 (20:53 +0100)
committerBen Skeggs <[email protected]>
Fri, 2 Feb 2018 05:24:03 +0000 (15:24 +1000)
The kbuild test bot complained about a new coccinelle warning nearby,
which sparked a discussion about the assignment to 'memory' inside of
the conditional expression.  See Link below for the original post.

Fix the assignment to silence the coccinelle warning and also make the
code look a little nicer.

Link: https://lists.freedesktop.org/archives/nouveau/2017-November/029242.html
Signed-off-by: Christoph Böhmwalder <[email protected]>
Signed-off-by: Ben Skeggs <[email protected]>
Reviewed-by: Karol Herbst <[email protected]>
drivers/gpu/drm/nouveau/nvkm/subdev/mmu/uvmm.c

index fa81d0c1ba415fd6663edd7dcb9286f883bf1d01..37b201b95f15bcab36374fdc4b7478e5a324e118 100644 (file)
@@ -106,7 +106,8 @@ nvkm_uvmm_mthd_map(struct nvkm_uvmm *uvmm, void *argv, u32 argc)
        } else
                return ret;
 
-       if (IS_ERR((memory = nvkm_umem_search(client, handle)))) {
+       memory = nvkm_umem_search(client, handle);
+       if (IS_ERR(memory)) {
                VMM_DEBUG(vmm, "memory %016llx %ld\n", handle, PTR_ERR(memory));
                return PTR_ERR(memory);
        }