generic: 5.15: refresh kernel patches
[openwrt/openwrt.git] / target / linux / generic / backport-5.15 / 807-v6.1-0007-nvmem-u-boot-env-find-Device-Tree-nodes-for-NVMEM-ce.patch
1 From d4d432670f7dee0a5432fcffcfc8699b25181ace Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
3 Date: Fri, 16 Sep 2022 13:20:57 +0100
4 Subject: [PATCH] nvmem: u-boot-env: find Device Tree nodes for NVMEM cells
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 DT binding allows specifying NVMEM cells as NVMEM device (provider)
10 subnodes. Looks for such subnodes when building NVMEM cells.
11
12 This allows NVMEM consumers to use U-Boot environment variables.
13
14 Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
15 Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16 Link: https://lore.kernel.org/r/20220916122100.170016-11-srinivas.kandagatla@linaro.org
17 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18 ---
19 drivers/nvmem/u-boot-env.c | 1 +
20 1 file changed, 1 insertion(+)
21
22 --- a/drivers/nvmem/u-boot-env.c
23 +++ b/drivers/nvmem/u-boot-env.c
24 @@ -92,6 +92,7 @@ static int u_boot_env_add_cells(struct u
25 return -ENOMEM;
26 priv->cells[idx].offset = data_offset + value - data;
27 priv->cells[idx].bytes = strlen(value);
28 + priv->cells[idx].np = of_get_child_by_name(dev->of_node, priv->cells[idx].name);
29 }
30
31 if (WARN_ON(idx != priv->ncells))