lightnvm: Make functions not used by ouside static

Mark functions not used by ouside of thier implementing file as static.

Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Matias Bjørling <m@bjorling.me>
Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
Johannes Thumshirn 2016-07-07 09:54:11 +02:00 committed by Jens Axboe
parent 6f92970219
commit 58eaaf9b6c
2 changed files with 6 additions and 4 deletions

View file

@ -110,7 +110,7 @@ static struct nvmm_type *nvm_find_mgr_type(const char *name)
return NULL;
}
struct nvmm_type *nvm_init_mgr(struct nvm_dev *dev)
static struct nvmm_type *nvm_init_mgr(struct nvm_dev *dev)
{
struct nvmm_type *mt;
int ret;