Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1730212
| From | srinivas.kandagatla@linaro.org |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/4] nvmem: add missing of_node_put() in of_nvmem_cell_get() |
| Date | 2017-09-11 11:10 +0200 |
| Message-ID | <uosT7-Sm-1@gated-at.bofh.it> (permalink) |
| References | <uosT7-Sm-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Masahiro Yamada <yamada.masahiro@socionext.com> of_get_next_parent() increments the refcount of the returned node. It should be put when done. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> 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 3866117..d12e5de 100644 --- a/drivers/nvmem/core.c +++ b/drivers/nvmem/core.c @@ -789,6 +789,7 @@ struct nvmem_cell *of_nvmem_cell_get(struct device_node *np, return ERR_PTR(-EINVAL); nvmem = __nvmem_device_get(nvmem_np, NULL, NULL); + of_node_put(nvmem_np); if (IS_ERR(nvmem)) return ERR_CAST(nvmem); -- 2.9.3
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 2/4] nvmem: add missing of_node_put() in of_nvmem_cell_get() srinivas.kandagatla@linaro.org - 2017-09-11 11:10 +0200
csiph-web