diff options
author | Rohit Chavan <roheetchavan@gmail.com> | 2023-08-22 17:34:51 +0530 |
---|---|---|
committer | Leon Romanovsky <leon@kernel.org> | 2023-08-22 17:27:16 +0300 |
commit | d3c2245754220b0fd4c6868e2fe48741a734be58 (patch) | |
tree | 23dbbec18aae3b632e0182a84ae93e4829777472 | |
parent | 6812e06999054792e13193666989dbdc01642625 (diff) | |
download | lwn-d3c2245754220b0fd4c6868e2fe48741a734be58.tar.gz lwn-d3c2245754220b0fd4c6868e2fe48741a734be58.zip |
RDMA/mlx5: Fix trailing */ formatting in block comment
Resolved a formatting issue where the trailing */ in a block comment
was placed on a same line instead of separate line.
Signed-off-by: Rohit Chavan <roheetchavan@gmail.com>
Link: https://lore.kernel.org/r/20230822120451.8215-1-roheetchavan@gmail.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
-rw-r--r-- | drivers/infiniband/hw/mlx5/mr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx5/mr.c b/drivers/infiniband/hw/mlx5/mr.c index 92f35fafb2c0..3e345ef380f1 100644 --- a/drivers/infiniband/hw/mlx5/mr.c +++ b/drivers/infiniband/hw/mlx5/mr.c @@ -1235,7 +1235,8 @@ static struct mlx5_ib_mr *reg_create(struct ib_pd *pd, struct ib_umem *umem, } /* The pg_access bit allows setting the access flags - * in the page list submitted with the command. */ + * in the page list submitted with the command. + */ MLX5_SET(create_mkey_in, in, pg_access, !!(pg_cap)); mkc = MLX5_ADDR_OF(create_mkey_in, in, memory_key_mkey_entry); |