Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1241368

[PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file.

From Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Newsgroups linux.kernel
Subject [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file.
Date 2015-10-07 13:10 +0200
Message-ID <qgULF-2Y1-25@gated-at.bofh.it> (permalink)
References <qgULE-2Y1-13@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


This patch sets the actual size of binary file to the nvmem size.
Previously this was not possible as the core was using the static global
data structures for attributes.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
 drivers/nvmem/core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
index 0a70e31..737fa75 100644
--- a/drivers/nvmem/core.c
+++ b/drivers/nvmem/core.c
@@ -315,6 +315,7 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config)
 	if (!nvmem->read_only)
 		nvmem->bin.attr.mode |= S_IWUSR;
 
+	nvmem->bin.size = nvmem->size;
 	device_initialize(&nvmem->dev);
 
 	dev_dbg(&nvmem->dev, "Registering nvmem device %s\n", config->name);
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file. Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-07 13:10 +0200
  Re: [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary  file. Greg KH <gregkh@linuxfoundation.org> - 2015-10-07 15:00 +0200
    Re: [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary  file. Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-07 15:30 +0200

csiph-web