diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2023-06-16 19:09:25 +0300 |
---|---|---|
committer | Vishal Verma <vishal.l.verma@intel.com> | 2023-06-24 00:08:24 +0300 |
commit | 0e796e3eafc5ba450a1f479f22aef4c8a4c7d686 (patch) | |
tree | 5cbd3f350b57a74d1addec4170083910fdb1e2c7 /drivers/nvdimm | |
parent | 191a9f3a611175b3e8e8c9e700fb8bce12ad7aa3 (diff) | |
download | linux-0e796e3eafc5ba450a1f479f22aef4c8a4c7d686.tar.xz |
nvdimm: make security_show static
The security_show function is not used outside of drivers/nvdimm/dimm_devs.c
and the attribute it is for is also already static. Silence the sparse
warning for this not being declared by making it static. Fixes:
drivers/nvdimm/dimm_devs.c:352:9: warning: symbol 'security_show' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Link: https://lore.kernel.org/r/20230616160925.17687-1-ben.dooks@codethink.co.uk
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
Diffstat (limited to 'drivers/nvdimm')
-rw-r--r-- | drivers/nvdimm/dimm_devs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvdimm/dimm_devs.c b/drivers/nvdimm/dimm_devs.c index 10c3cb6a574a..1273873582be 100644 --- a/drivers/nvdimm/dimm_devs.c +++ b/drivers/nvdimm/dimm_devs.c @@ -350,7 +350,7 @@ static ssize_t available_slots_show(struct device *dev, static DEVICE_ATTR_RO(available_slots); static ssize_t security_show(struct device *dev, - struct device_attribute *attr, char *buf) + struct device_attribute *attr, char *buf) { struct nvdimm *nvdimm = to_nvdimm(dev); |