diff mbox series

[-next] nvdimm: make nd_class static

Message ID 20220926005104.575548-1-ruanjinjie@huawei.com (mailing list archive)
State New, archived
Headers show
Series [-next] nvdimm: make nd_class static | expand

Commit Message

Jinjie Ruan Sept. 26, 2022, 12:51 a.m. UTC
The symbol is not used outside of the file, so mark it static.

Fixes the following warning:

drivers/nvdimm/bus.c:28:14: warning: symbol 'nd_class' was not declared. Should it be static?

Signed-off-by: ruanjinjie <ruanjinjie@huawei.com>
---
 drivers/nvdimm/bus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/nvdimm/bus.c b/drivers/nvdimm/bus.c
index b38d0355b0ac..1bf5f77e6f76 100644
--- a/drivers/nvdimm/bus.c
+++ b/drivers/nvdimm/bus.c
@@ -25,7 +25,7 @@ 
 
 int nvdimm_major;
 static int nvdimm_bus_major;
-struct class *nd_class;
+static struct class *nd_class;
 static DEFINE_IDA(nd_ida);
 
 static int to_nd_device_type(struct device *dev)