From: Łukasz Plewa <lukasz.pl...@intel.com>

the declaration of ndctl_persistence_domain should be above first use
of this enum

Reported-by: Kamil Diedrich <kamil.diedr...@intel.com>
Signed-off-by: Łukasz Plewa <lukasz.pl...@intel.com>
---
 ndctl/libndctl.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/ndctl/libndctl.h b/ndctl/libndctl.h
index cf6a77f..684fcd4 100644
--- a/ndctl/libndctl.h
+++ b/ndctl/libndctl.h
@@ -97,6 +97,13 @@ void ndctl_set_log_priority(struct ndctl_ctx *ctx, int 
priority);
 void ndctl_set_userdata(struct ndctl_ctx *ctx, void *userdata);
 void *ndctl_get_userdata(struct ndctl_ctx *ctx);
 
+enum ndctl_persistence_domain {
+       PERSISTENCE_NONE = 0,
+       PERSISTENCE_MEM_CTRL = 10,
+       PERSISTENCE_CPU_CACHE = 20,
+       PERSISTENCE_UNKNOWN = INT_MAX,
+};
+
 struct ndctl_bus;
 struct ndctl_bus *ndctl_bus_get_first(struct ndctl_ctx *ctx);
 struct ndctl_bus *ndctl_bus_get_next(struct ndctl_bus *bus);
@@ -309,13 +316,6 @@ struct badblock {
        unsigned int len;
 };
 
-enum ndctl_persistence_domain {
-       PERSISTENCE_NONE = 0,
-       PERSISTENCE_MEM_CTRL = 10,
-       PERSISTENCE_CPU_CACHE = 20,
-       PERSISTENCE_UNKNOWN = INT_MAX,
-};
-
 struct ndctl_region;
 struct ndctl_region *ndctl_region_get_first(struct ndctl_bus *bus);
 struct ndctl_region *ndctl_region_get_next(struct ndctl_region *region);
-- 
2.7.4

_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

Reply via email to