diff options
author | Zhu Yanjun <yanjun.zhu@oracle.com> | 2017-03-03 00:44:26 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-03 09:51:22 -0800 |
commit | a8d63a53b3eac8626f62336dcc327c18f1bbca78 (patch) | |
tree | 774e26f9fd85f6bc59afad87104dd99f8633dee3 /net/rds/ib.c | |
parent | 37411cad633f5e41f8a13007654909d21b19363a (diff) |
rds: remove unnecessary returned value check
The function rds_trans_register always returns 0. As such, it is not
necessary to check the returned value.
Cc: Joe Jin <joe.jin@oracle.com>
Cc: Junxiao Bi <junxiao.bi@oracle.com>
Signed-off-by: Zhu Yanjun <yanjun.zhu@oracle.com>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/ib.c')
-rw-r--r-- | net/rds/ib.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/net/rds/ib.c b/net/rds/ib.c index 0f557b243311..7a64c8db81ab 100644 --- a/net/rds/ib.c +++ b/net/rds/ib.c @@ -438,16 +438,12 @@ int rds_ib_init(void) if (ret) goto out_sysctl; - ret = rds_trans_register(&rds_ib_transport); - if (ret) - goto out_recv; + rds_trans_register(&rds_ib_transport); rds_info_register_func(RDS_INFO_IB_CONNECTIONS, rds_ib_ic_info); goto out; -out_recv: - rds_ib_recv_exit(); out_sysctl: rds_ib_sysctl_exit(); out_ibreg: |