From: Chaitanya Kulkarni Date: Tue, 26 Jan 2021 19:47:52 +0000 (-0800) Subject: nvme-core: get rid of the extra space X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8f8ea928fd77db60dc22276e3acdb9ca41cbf8dd;p=linux.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 009830d247f8c..168601d96f483 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); }