All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] remove all blanks in front of goto label
@ 2021-06-19  7:40 Ming.Li
  2021-06-21  2:49 ` Chaitanya Kulkarni
  2021-06-21  3:23 ` Chaitanya Kulkarni
  0 siblings, 2 replies; 4+ messages in thread
From: Ming.Li @ 2021-06-19  7:40 UTC (permalink / raw)
  To: axboe, linux-nvme; +Cc: mingli199x

There is a format style mistake. Some blanks in front of goto label.

Signed-off-by: Ming.Li <mingli199x@qq.com>
---
 drivers/nvme/host/pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index a29b170701fc..bf3deda1561e 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2780,7 +2780,7 @@ static int nvme_dev_map(struct nvme_dev *dev)
 		goto release;
 
 	return 0;
-  release:
+release:
 	pci_release_mem_regions(pdev);
 	return -ENODEV;
 }
-- 
2.24.3 (Apple Git-128)


_______________________________________________
Linux-nvme mailing list
Linux-nvme@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-nvme

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-21  5:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-19  7:40 [PATCH] remove all blanks in front of goto label Ming.Li
2021-06-21  2:49 ` Chaitanya Kulkarni
2021-06-21  3:23 ` Chaitanya Kulkarni
2021-06-21  5:31   ` Christoph Hellwig

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.