diff options
author | Chengguang Xu <cgxu519@gmx.com> | 2018-12-11 02:24:34 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-12-13 11:58:59 +0300 |
commit | 8eb5d89f483141dd076529bf5f6aa235b425886e (patch) | |
tree | 6269ee8b06c84db74e6b8b06aa5fa55a271db12a /drivers/nvme/host/core.c | |
parent | 3f2304f8c6d6ed97849057bd16fee99e434ca796 (diff) | |
download | linux-8eb5d89f483141dd076529bf5f6aa235b425886e.tar.xz |
nvme: add __exit annotation
Add __exit annotation to cleanup helper which is only
called once in the module.
Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme/host/core.c')
-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 c71e879821ad..3043cedb24e1 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -3802,7 +3802,7 @@ out: return result; } -void nvme_core_exit(void) +void __exit nvme_core_exit(void) { ida_destroy(&nvme_subsystems_ida); class_destroy(nvme_subsys_class); |