From: Chaitanya Kulkarni Date: Tue, 26 Jan 2021 19:47:52 +0000 (-0800) Subject: nvme-core: get rid of the extra space X-Git-Tag: for-5.12/drivers-2021-02-17~14^2~5 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=8f8ea928fd77db60dc22276e3acdb9ca41cbf8dd;p=linux-block.git nvme-core: get rid of the extra space Remove the extra space in the nvme_free_cels() when calling xa_for_each loop which is not a common practice (except drivers/infiniband/core/ not sure why). Signed-off-by: Chaitanya Kulkarni Signed-off-by: Christoph Hellwig --- diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 009830d247f8..168601d96f48 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -4448,7 +4448,7 @@ static void nvme_free_cels(struct nvme_ctrl *ctrl) struct nvme_effects_log *cel; unsigned long i; - xa_for_each (&ctrl->cels, i, cel) { + xa_for_each(&ctrl->cels, i, cel) { xa_erase(&ctrl->cels, i); kfree(cel); }