diff options
author | Keith Busch <kbusch@kernel.org> | 2025-01-28 07:22:31 -0800 |
---|---|---|
committer | Keith Busch <kbusch@kernel.org> | 2025-01-31 10:14:27 -0800 |
commit | 2d1a2dab95cdc6f2e0c6af3c0514b0bea94af482 (patch) | |
tree | 79c942511965c563651a34ba8110b7aed3417442 | |
parent | cc3d4671a0db9499b201c43faba6c46e1a21274c (diff) |
nvme: make nvme_tls_attrs_group static
To suppress the compiler "warning: symbol 'nvme_tls_attrs_group' was not
declared. Should it be static?"
Fixes: 1e48b34c9bc79a ("nvme: split off TLS sysfs attributes into a separate group")
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Keith Busch <kbusch@kernel.org>
-rw-r--r-- | drivers/nvme/host/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/sysfs.c b/drivers/nvme/host/sysfs.c index b68a9e5f1ea3..3a41b9ab0f13 100644 --- a/drivers/nvme/host/sysfs.c +++ b/drivers/nvme/host/sysfs.c @@ -792,7 +792,7 @@ static umode_t nvme_tls_attrs_are_visible(struct kobject *kobj, return a->mode; } -const struct attribute_group nvme_tls_attrs_group = { +static const struct attribute_group nvme_tls_attrs_group = { .attrs = nvme_tls_attrs, .is_visible = nvme_tls_attrs_are_visible, }; |