Skip to content

Commit 8f8ea92

Browse files
ChaitanayaKulkarniChristoph Hellwig
authored andcommitted
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 <chaitanya.kulkarni@wdc.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
1 parent 4a407d5 commit 8f8ea92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/nvme/host/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4448,7 +4448,7 @@ static void nvme_free_cels(struct nvme_ctrl *ctrl)
44484448
struct nvme_effects_log *cel;
44494449
unsigned long i;
44504450

4451-
xa_for_each (&ctrl->cels, i, cel) {
4451+
xa_for_each(&ctrl->cels, i, cel) {
44524452
xa_erase(&ctrl->cels, i);
44534453
kfree(cel);
44544454
}

0 commit comments

Comments
 (0)