diff options
author | Zhu Yanjun <yanjun.zhu@oracle.com> | 2018-01-31 06:06:54 -0500 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-01-31 16:32:10 -0500 |
commit | 1a241db19ca924f475635a57c88824d63d5ccb13 (patch) | |
tree | 586429d6444916f9d4f276072fa4ff1dce4c8c47 /drivers/infiniband/sw/rxe/rxe_av.c | |
parent | 074b5abbf7a1f5d847df96e6b951d767f3a29a43 (diff) | |
download | linux-1a241db19ca924f475635a57c88824d63d5ccb13.tar.gz linux-1a241db19ca924f475635a57c88824d63d5ccb13.tar.bz2 linux-1a241db19ca924f475635a57c88824d63d5ccb13.zip |
IB/rxe: remove redudant parameter in function
In the function rxe_av_from_attr, the parameter rxe
is not used. So it is removed.
CC: Srinivas Eeda <srinivas.eeda@oracle.com>
CC: Junxiao Bi <junxiao.bi@oracle.com>
Signed-off-by: Zhu Yanjun <yanjun.zhu@oracle.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rxe/rxe_av.c')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_av.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_av.c b/drivers/infiniband/sw/rxe/rxe_av.c index 1cc9e2e1365d..8accd5da2c75 100644 --- a/drivers/infiniband/sw/rxe/rxe_av.c +++ b/drivers/infiniband/sw/rxe/rxe_av.c @@ -52,8 +52,8 @@ int rxe_av_chk_attr(struct rxe_dev *rxe, struct rdma_ah_attr *attr) return 0; } -int rxe_av_from_attr(struct rxe_dev *rxe, u8 port_num, - struct rxe_av *av, struct rdma_ah_attr *attr) +int rxe_av_from_attr(u8 port_num, struct rxe_av *av, + struct rdma_ah_attr *attr) { memset(av, 0, sizeof(*av)); memcpy(&av->grh, rdma_ah_read_grh(attr), |