]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
nouveau/gsp/rm: cleanup IS_ERR_OR_NULL in core implementation
authorHongling Zeng <zenghongling@kylinos.cn>
Thu, 28 May 2026 06:24:49 +0000 (14:24 +0800)
committerLyude Paul <lyude@redhat.com>
Thu, 28 May 2026 16:49:57 +0000 (12:49 -0400)
Clean up IS_ERR_OR_NULL() checks in the core RPC and alloc
implementation files. The underlying functions return error pointers,
so IS_ERR() is sufficient.

This affects:
- r535_gsp_rpc_rm_free() in alloc.c
- r535_gsp_rpc_rm_alloc_push() in alloc.c
- r535_gsp_msgq_recv() in rpc.c

Signed-off-by: Hongling Zeng <zenghongling@kylinos.cn>
Signed-off-by: Lyude Paul <lyude@redhat.com>
Link: https://patch.msgid.link/20260528062451.54107-4-zenghongling@kylinos.cn
Reviewed-by: Lyude Paul <lyude@redhat.com>
drivers/gpu/drm/nouveau/nvkm/subdev/gsp/rm/r535/alloc.c
drivers/gpu/drm/nouveau/nvkm/subdev/gsp/rm/r535/rpc.c

index 46e3a29f2ad7f0c6dc80cb4f1a1e21e22437aae2..27f275d2e151017cdb095676f5ad9f2005db2789 100644 (file)
@@ -35,7 +35,7 @@ r535_gsp_rpc_rm_free(struct nvkm_gsp_object *object)
                   client->object.handle, object->handle);
 
        rpc = nvkm_gsp_rpc_get(gsp, NV_VGPU_MSG_FUNCTION_FREE, sizeof(*rpc));
-       if (WARN_ON(IS_ERR_OR_NULL(rpc)))
+       if (WARN_ON(IS_ERR(rpc)))
                return -EIO;
 
        rpc->params.hRoot = client->object.handle;
@@ -60,7 +60,7 @@ r535_gsp_rpc_rm_alloc_push(struct nvkm_gsp_object *object, void *params)
        void *ret = NULL;
 
        rpc = nvkm_gsp_rpc_push(gsp, rpc, NVKM_GSP_RPC_REPLY_RECV, sizeof(*rpc));
-       if (IS_ERR_OR_NULL(rpc))
+       if (IS_ERR(rpc))
                return rpc;
 
        if (rpc->status) {
index 3ca3de8f434082d881675e49c6c08b2cdefdc60b..41301f19729cf86800847a1a63d72422328306e1 100644 (file)
@@ -324,7 +324,7 @@ r535_gsp_msgq_recv(struct nvkm_gsp *gsp, u32 gsp_rpc_len, int *retries)
                u32 size;
 
                rpc = r535_gsp_msgq_peek(gsp, sizeof(*rpc), info.retries);
-               if (IS_ERR_OR_NULL(rpc)) {
+               if (IS_ERR(rpc)) {
                        kvfree(buf);
                        return rpc;
                }
@@ -333,7 +333,7 @@ r535_gsp_msgq_recv(struct nvkm_gsp *gsp, u32 gsp_rpc_len, int *retries)
                info.continuation = true;
 
                rpc = r535_gsp_msgq_recv_one_elem(gsp, &info);
-               if (IS_ERR_OR_NULL(rpc)) {
+               if (IS_ERR(rpc)) {
                        kvfree(buf);
                        return rpc;
                }