diff options
author | Israel Rukshin <israelr@mellanox.com> | 2020-03-31 15:46:33 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2020-03-31 17:20:08 +0300 |
commit | a62315b83664dc9a7a6c6170ba2d174bb9fbed3c (patch) | |
tree | 3db3bf3a2782b3f324966a703b1bfff90da8783f /drivers/nvme/host | |
parent | 38803fcffb5baf40cd403c1bd980f22308aefee8 (diff) | |
download | linux-a62315b83664dc9a7a6c6170ba2d174bb9fbed3c.tar.xz |
nvme-rdma: Replace comma with a semicolon
Use a semicolon at the end of an assignment expression.
Signed-off-by: Israel Rukshin <israelr@mellanox.com>
Reviewed-by: Max Gurtovoy <maxg@mellanox.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme/host')
-rw-r--r-- | drivers/nvme/host/rdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index 86603d9b0cef..f704e7227d05 100644 --- a/drivers/nvme/host/rdma.c +++ b/drivers/nvme/host/rdma.c @@ -1350,7 +1350,7 @@ static int nvme_rdma_post_send(struct nvme_rdma_queue *queue, int ret; sge->addr = qe->dma; - sge->length = sizeof(struct nvme_command), + sge->length = sizeof(struct nvme_command); sge->lkey = queue->device->pd->local_dma_lkey; wr.next = NULL; |