diff options
| author | Yuval Shaia <[email protected]> | 2018-05-10 09:32:43 +0300 |
|---|---|---|
| committer | Jason Gunthorpe <[email protected]> | 2018-05-15 16:22:02 -0600 |
| commit | aec05afe641b9c10024c7e4838c0d6cd734f3565 (patch) | |
| tree | 481a66b5cecc756ea604f6dd9f9a88fe88fc8b1e | |
| parent | 2d478b28596f4fa6efd10a696f05e354be05de45 (diff) | |
IB/core: Remove redundant return
"return" statement at the end of void function is redundant, removing
it.
Signed-off-by: Yuval Shaia <[email protected]>
Reviewed-by: Zhu Yanjun <[email protected]>
Reviewed-by: Qing Huang <[email protected]>
Signed-off-by: Jason Gunthorpe <[email protected]>
| -rw-r--r-- | drivers/infiniband/core/umem.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/infiniband/core/umem.c b/drivers/infiniband/core/umem.c index 9a4e899d94b3..b3cdc099d32a 100644 --- a/drivers/infiniband/core/umem.c +++ b/drivers/infiniband/core/umem.c @@ -64,8 +64,6 @@ static void __ib_umem_release(struct ib_device *dev, struct ib_umem *umem, int d } sg_free_table(&umem->sg_head); - return; - } /** |