Commit 8f8ea928 authored by Chaitanya Kulkarni's avatar Chaitanya Kulkarni Committed by Christoph Hellwig

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: default avatarChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 4a407d5e
...@@ -4448,7 +4448,7 @@ static void nvme_free_cels(struct nvme_ctrl *ctrl) ...@@ -4448,7 +4448,7 @@ static void nvme_free_cels(struct nvme_ctrl *ctrl)
struct nvme_effects_log *cel; struct nvme_effects_log *cel;
unsigned long i; unsigned long i;
xa_for_each (&ctrl->cels, i, cel) { xa_for_each(&ctrl->cels, i, cel) {
xa_erase(&ctrl->cels, i); xa_erase(&ctrl->cels, i);
kfree(cel); kfree(cel);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment