diff options
author | Max Gurtovoy <[email protected]> | 2021-01-10 11:19:02 +0000 |
---|---|---|
committer | Jason Gunthorpe <[email protected]> | 2021-01-18 16:59:04 -0400 |
commit | ec53a2a6540d6025f0ff205af0ba635c9b1cce02 (patch) | |
tree | 5f618445c146cafde8157e234cb12fc9035f2f5a | |
parent | 8ebe0e2a7efa7d94e2c3306a76c2b0c387465595 (diff) |
IB/isert: Remove unneeded semicolon
No need to add semicolon after closing bracket.
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Israel Rukshin <[email protected]>
Signed-off-by: Max Gurtovoy <[email protected]>
Reviewed-by: Sagi Grimberg <[email protected]>
Signed-off-by: Jason Gunthorpe <[email protected]>
-rw-r--r-- | drivers/infiniband/ulp/isert/ib_isert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/isert/ib_isert.c b/drivers/infiniband/ulp/isert/ib_isert.c index 5958929b7dec..96514f675427 100644 --- a/drivers/infiniband/ulp/isert/ib_isert.c +++ b/drivers/infiniband/ulp/isert/ib_isert.c @@ -1991,7 +1991,7 @@ isert_set_dif_domain(struct se_cmd *se_cmd, struct ib_sig_domain *domain) if (se_cmd->prot_type == TARGET_DIF_TYPE1_PROT || se_cmd->prot_type == TARGET_DIF_TYPE2_PROT) domain->sig.dif.ref_remap = true; -}; +} static int isert_set_sig_attrs(struct se_cmd *se_cmd, struct ib_sig_attrs *sig_attrs) |