nvdimm: fix inline function return type warning
authorRandy Dunlap <rdunlap@infradead.org>
Tue, 28 Jul 2015 19:27:01 +0000 (12:27 -0700)
committerDan Williams <dan.j.williams@intel.com>
Fri, 31 Jul 2015 22:17:09 +0000 (18:17 -0400)
Fix multiple build warnings when CONFIG_BTT is not enabled:

In file included from ../drivers/nvdimm/bus.c:29:0:
../drivers/nvdimm/nd.h:169:15: warning: return type defaults to 'int' [-Wreturn-type]
 static inline nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata)
               ^

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: linux-nvdimm@lists.01.org
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/nvdimm/nd.h

index c41f53e74277cb23252be136e7b94a859b6571f6..835263e47bb87d69cbe4be38bdb2fcac3ee69e7c 100644 (file)
@@ -166,7 +166,7 @@ int nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata);
 bool is_nd_btt(struct device *dev);
 struct device *nd_btt_create(struct nd_region *nd_region);
 #else
-static inline nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata)
+static inline int nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata)
 {
        return -ENODEV;
 }