diff options
author | Wenpeng Liang <[email protected]> | 2021-04-07 16:15:48 +0800 |
---|---|---|
committer | Jason Gunthorpe <[email protected]> | 2021-04-12 14:52:22 -0300 |
commit | 9279c35b63e587f7810f19a6a702ec649121dff3 (patch) | |
tree | 1b4110abb32f0c0427e38161702fbe900ab108e0 | |
parent | ab27f45fdfcc6a0035a2589998e0f358e133893c (diff) |
RDMA/core: Remove the redundant return statements
The return statements at the end of a void function is meaningless.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Wenpeng Liang <[email protected]>
Signed-off-by: Weihang Li <[email protected]>
Signed-off-by: Jason Gunthorpe <[email protected]>
-rw-r--r-- | drivers/infiniband/core/mad.c | 2 | ||||
-rw-r--r-- | drivers/infiniband/core/sysfs.c | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/infiniband/core/mad.c b/drivers/infiniband/core/mad.c index ce0397fd4b7d..16ecb81f586a 100644 --- a/drivers/infiniband/core/mad.c +++ b/drivers/infiniband/core/mad.c @@ -1860,8 +1860,6 @@ static void ib_mad_complete_recv(struct ib_mad_agent_private *mad_agent_priv, mad_recv_wc); deref_mad_agent(mad_agent_priv); } - - return; } static enum smi_action handle_ib_smi(const struct ib_mad_port_private *port_priv, diff --git a/drivers/infiniband/core/sysfs.c b/drivers/infiniband/core/sysfs.c index 91a53b2b4718..dcff5e765b86 100644 --- a/drivers/infiniband/core/sysfs.c +++ b/drivers/infiniband/core/sysfs.c @@ -1049,7 +1049,6 @@ err_free_hsag: kfree(hsag); err_free_stats: kfree(stats); - return; } static int add_port(struct ib_core_device *coredev, int port_num) |