From: Israel Rukshin Date: Tue, 31 Mar 2020 12:46:33 +0000 (+0300) Subject: nvme-rdma: Replace comma with a semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a62315b83664dc9a7a6c6170ba2d174bb9fbed3c;p=linux.git nvme-rdma: Replace comma with a semicolon Use a semicolon at the end of an assignment expression. Signed-off-by: Israel Rukshin Reviewed-by: Max Gurtovoy Signed-off-by: Christoph Hellwig --- diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index 86603d9b0cef4..f704e7227d05b 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;