diff mbox series

[2/3] RDMA/uverbs: Convert to use ERR_CAST()

Message ID 202504012109233981_YPVbd4wQzmAzP3tA5IG@zte.com.cn (mailing list archive)
State New
Headers show
Series Convert to use ERR_CAST() | expand

Commit Message

shao.mingyin@zte.com.cn April 1, 2025, 1:09 p.m. UTC
From: Li Haoran <li.haoran7@zte.com.cn>

As opposed to open-code, using the ERR_CAST macro clearly indicates that
this is a pointer to an error value and a type conversion was performed.

Signed-off-by: Li Haoran <li.haoran7@zte.com.cn>
Signed-off-by: Shao Mingyin <shao.mingyin@zte.com.cn>
---
 drivers/infiniband/core/uverbs_cmd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
index 3c3bb670c805..bc9fe3ceca4d 100644
--- a/drivers/infiniband/core/uverbs_cmd.c
+++ b/drivers/infiniband/core/uverbs_cmd.c
@@ -193,7 +193,7 @@  _ib_uverbs_lookup_comp_file(s32 fd, struct uverbs_attr_bundle *attrs)
 					       fd, attrs);

 	if (IS_ERR(uobj))
-		return (void *)uobj;
+		return ERR_CAST(uobj);

 	uverbs_uobject_get(uobj);
 	uobj_put_read(uobj);