aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/nvmem
diff options
context:
space:
mode:
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>2018-06-26 12:36:40 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-07-07 17:30:46 +0200
commitfc82975aea38da8d605ff2fae3f871ac2929b67d (patch)
tree3f4f46aca125177a4dc6dd77a11d6f91ebe841d7 /drivers/nvmem
parentnvmem: rave-sp-eeprom: Remove VLA usage (diff)
downloadlinux-dev-fc82975aea38da8d605ff2fae3f871ac2929b67d.tar.xz
linux-dev-fc82975aea38da8d605ff2fae3f871ac2929b67d.zip
nvmem: core: remove unused nvmem_device ncells member
nvmem ncells can be over written by calling nvmem_add_cells() multiple times. I see there is no real point of maintaining count of cells when we have a list of cell. Remove this to avoid any confusion! Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/nvmem')
-rw-r--r--drivers/nvmem/core.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
index b5b0cdc21d01..34b71b1c69f4 100644
--- a/drivers/nvmem/core.c
+++ b/drivers/nvmem/core.c
@@ -31,7 +31,6 @@ struct nvmem_device {
struct device dev;
int stride;
int word_size;
- int ncells;
int id;
int users;
size_t size;
@@ -389,7 +388,6 @@ int nvmem_add_cells(struct nvmem_device *nvmem,
nvmem_cell_add(cells[i]);
}
- nvmem->ncells = ncells;
/* remove tmp array */
kfree(cells);