aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/nvme
diff options
context:
space:
mode:
authorIsrael Rukshin <israelr@mellanox.com>2020-03-31 15:46:33 +0300
committerChristoph Hellwig <hch@lst.de>2020-03-31 16:20:08 +0200
commita62315b83664dc9a7a6c6170ba2d174bb9fbed3c (patch)
tree3db3bf3a2782b3f324966a703b1bfff90da8783f /drivers/nvme
parentnvme-fcloop: fix deallocation of working context (diff)
downloadwireguard-linux-a62315b83664dc9a7a6c6170ba2d174bb9fbed3c.tar.xz
wireguard-linux-a62315b83664dc9a7a6c6170ba2d174bb9fbed3c.zip
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')
-rw-r--r--drivers/nvme/host/rdma.c2
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;