diff options
author | Dan Williams <dan.j.williams@intel.com> | 2016-03-18 02:23:09 +0100 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2016-04-22 19:59:54 +0200 |
commit | e32bc729a3a486e20443db3379ecf67240b20616 (patch) | |
tree | 1d4e0b6dd686eb88766581cce79b59ab04266284 /drivers/nvdimm/nd.h | |
parent | libnvdimm, pfn, convert nd_pfn_probe() to devm (diff) | |
download | linux-e32bc729a3a486e20443db3379ecf67240b20616.tar.xz linux-e32bc729a3a486e20443db3379ecf67240b20616.zip |
libnvdimm, btt, convert nd_btt_probe() to devm
Pass the device performing the probe so we can use a devm allocation for
the btt superblock.
Cc: Vishal Verma <vishal.l.verma@intel.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/nvdimm/nd.h')
-rw-r--r-- | drivers/nvdimm/nd.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/nvdimm/nd.h b/drivers/nvdimm/nd.h index c831caa3d60a..0fb14890ba26 100644 --- a/drivers/nvdimm/nd.h +++ b/drivers/nvdimm/nd.h @@ -197,11 +197,13 @@ struct nd_gen_sb { u64 nd_sb_checksum(struct nd_gen_sb *sb); #if IS_ENABLED(CONFIG_BTT) -int nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata); +int nd_btt_probe(struct device *dev, 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 int nd_btt_probe(struct nd_namespace_common *ndns, void *drvdata) +static inline int nd_btt_probe(struct device *dev, + struct nd_namespace_common *ndns, void *drvdata) { return -ENODEV; } |