nvme-core: get rid of the extra space
authorChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Tue, 26 Jan 2021 19:47:52 +0000 (11:47 -0800)
committerChristoph Hellwig <hch@lst.de>
Tue, 2 Feb 2021 09:26:12 +0000 (10:26 +0100)
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 <chaitanya.kulkarni@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/core.c

index 009830d..168601d 100644 (file)
@@ -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);
        }