[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240918081134.908075-1-roheetchavan@gmail.com>
Date: Wed, 18 Sep 2024 13:41:34 +0530
From: Rohit Chavan <roheetchavan@...il.com>
To: Christoph Hellwig <hch@....de>,
Sagi Grimberg <sagi@...mberg.me>,
Chaitanya Kulkarni <kch@...dia.com>,
linux-nvme@...ts.infradead.org,
linux-kernel@...r.kernel.org
Cc: Rohit Chavan <roheetchavan@...il.com>
Subject: [PATCH] nvmet: Fix warnings given by checkpatch
This patch addresses below issues produced by checkpatch script.
ERROR: space required before the open brace '{'
drivers/nvme/target/debugfs.h:25
WARNING: please, no spaces at the start of a line
drivers/nvme/target/debugfs.h:35
Signed-off-by: Rohit Chavan <roheetchavan@...il.com>
---
drivers/nvme/target/debugfs.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/nvme/target/debugfs.h b/drivers/nvme/target/debugfs.h
index cfb8bbf6a297..166de8c7fc49 100644
--- a/drivers/nvme/target/debugfs.h
+++ b/drivers/nvme/target/debugfs.h
@@ -22,7 +22,7 @@ static inline int nvmet_debugfs_subsys_setup(struct nvmet_subsys *subsys)
{
return 0;
}
-static inline void nvmet_debugfs_subsys_free(struct nvmet_subsys *subsys){}
+static inline void nvmet_debugfs_subsys_free(struct nvmet_subsys *subsys) {}
static inline int nvmet_debugfs_ctrl_setup(struct nvmet_ctrl *ctrl)
{
@@ -32,7 +32,7 @@ static inline void nvmet_debugfs_ctrl_free(struct nvmet_ctrl *ctrl) {}
static inline int __init nvmet_init_debugfs(void)
{
- return 0;
+ return 0;
}
static inline void nvmet_exit_debugfs(void) {}
--
2.34.1
Powered by blists - more mailing lists