diff options
author | Bart Van Assche <bvanassche@acm.org> | 2018-10-09 00:28:39 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-10-17 09:58:25 +0300 |
commit | eb090c4c948ccc7a051451261cf1426edf83f3eb (patch) | |
tree | 89a98adba54cfb57c8e5690b1f11b53301a32698 /drivers/nvme | |
parent | 35da77d556c17980f9bd6892828a70d7a1a8a145 (diff) | |
download | linux-eb090c4c948ccc7a051451261cf1426edf83f3eb.tar.xz |
nvme-core: declare local symbols static
This patch avoids that sparse complains about missing declarations.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 2db33a752e2b..63932dea74a1 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -2729,7 +2729,7 @@ static umode_t nvme_ns_id_attrs_are_visible(struct kobject *kobj, return a->mode; } -const struct attribute_group nvme_ns_id_attr_group = { +static const struct attribute_group nvme_ns_id_attr_group = { .attrs = nvme_ns_id_attrs, .is_visible = nvme_ns_id_attrs_are_visible, }; |