diff options
author | Dan Williams <dan.j.williams@intel.com> | 2017-08-11 17:36:54 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2017-08-11 17:36:54 -0700 |
commit | b2c48f9f95cba395e16020bef1fdfc248f53030c (patch) | |
tree | f5f00ed2572dd00a29f7248800d31a8a319ed521 /drivers/nvdimm/nd.h | |
parent | dcb79b15449fc3e4427a3d1cbcc72661ba13622d (diff) | |
download | linux-b2c48f9f95cba395e16020bef1fdfc248f53030c.tar.gz linux-b2c48f9f95cba395e16020bef1fdfc248f53030c.tar.bz2 linux-b2c48f9f95cba395e16020bef1fdfc248f53030c.zip |
libnvdimm: rename nd_sector_size_{show,store} to nd_size_select_{show,store}
Prepare for other another consumer of this size selection scheme that is
not a 'sector size'.
Cc: Oliver O'Halloran <oohall@gmail.com>
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, 3 insertions, 3 deletions
diff --git a/drivers/nvdimm/nd.h b/drivers/nvdimm/nd.h index a08fc2e24fb3..251c7e6d2588 100644 --- a/drivers/nvdimm/nd.h +++ b/drivers/nvdimm/nd.h @@ -234,10 +234,10 @@ void nd_device_unregister(struct device *dev, enum nd_async_mode mode); void nd_device_notify(struct device *dev, enum nvdimm_event event); int nd_uuid_store(struct device *dev, u8 **uuid_out, const char *buf, size_t len); -ssize_t nd_sector_size_show(unsigned long current_lbasize, +ssize_t nd_size_select_show(unsigned long current_size, const unsigned long *supported, char *buf); -ssize_t nd_sector_size_store(struct device *dev, const char *buf, - unsigned long *current_lbasize, const unsigned long *supported); +ssize_t nd_size_select_store(struct device *dev, const char *buf, + unsigned long *current_size, const unsigned long *supported); int __init nvdimm_init(void); int __init nd_region_init(void); int __init nd_label_init(void); |