Commit ccdb07f6 authored by Dan Williams's avatar Dan Williams

dax: cleanup needlessly global symbol warnings

drivers/dax/dax.c:75:6: warning: symbol 'dax_region_put' was not declared.
drivers/dax/dax.c:95:19: warning: symbol 'alloc_dax_region' was not declared.
drivers/dax/dax.c:173:5: warning: symbol 'devm_create_dax_dev' was not declared.
drivers/dax/pmem.c:27:17: warning: symbol 'to_dax_pmem' was not declared.
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 694d0d0b
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/dax.h> #include <linux/dax.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/mm.h> #include <linux/mm.h>
#include "dax.h"
static int dax_major; static int dax_major;
static struct class *dax_class; static struct class *dax_class;
......
...@@ -24,7 +24,7 @@ struct dax_pmem { ...@@ -24,7 +24,7 @@ struct dax_pmem {
struct completion cmp; struct completion cmp;
}; };
struct dax_pmem *to_dax_pmem(struct percpu_ref *ref) static struct dax_pmem *to_dax_pmem(struct percpu_ref *ref)
{ {
return container_of(ref, struct dax_pmem, ref); return container_of(ref, struct dax_pmem, ref);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment