diff mbox series

nvmem: u-boot-env: find Device Tree nodes for NVMEM cells

Message ID 20220915200629.10270-1-zajec5@gmail.com
State New
Headers show
Series nvmem: u-boot-env: find Device Tree nodes for NVMEM cells | expand

Commit Message

Rafał Miłecki Sept. 15, 2022, 8:06 p.m. UTC
From: Rafał Miłecki <rafal@milecki.pl>

DT binding allows specifying NVMEM cells as NVMEM device (provider)
subnodes. Looks for such subnodes when building NVMEM cells.

This allows NVMEM consumers to use U-Boot environment variables.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
---
 drivers/nvmem/u-boot-env.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Srinivas Kandagatla Sept. 16, 2022, 9:57 a.m. UTC | #1
On 15/09/2022 21:06, Rafał Miłecki wrote:
> From: Rafał Miłecki <rafal@milecki.pl>
> 
> DT binding allows specifying NVMEM cells as NVMEM device (provider)
> subnodes. Looks for such subnodes when building NVMEM cells.
> 
> This allows NVMEM consumers to use U-Boot environment variables.
> 
> Signed-off-by: Rafał Miłecki <rafal@milecki.pl>

Applied thanks,

--srini
> ---
>   drivers/nvmem/u-boot-env.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/nvmem/u-boot-env.c b/drivers/nvmem/u-boot-env.c
> index 9b9abfb8f187..d17a164ae705 100644
> --- a/drivers/nvmem/u-boot-env.c
> +++ b/drivers/nvmem/u-boot-env.c
> @@ -92,6 +92,7 @@ static int u_boot_env_add_cells(struct u_boot_env *priv, uint8_t *buf,
>   			return -ENOMEM;
>   		priv->cells[idx].offset = data_offset + value - data;
>   		priv->cells[idx].bytes = strlen(value);
> +		priv->cells[idx].np = of_get_child_by_name(dev->of_node, priv->cells[idx].name);
>   	}
>   
>   	if (WARN_ON(idx != priv->ncells))
diff mbox series

Patch

diff --git a/drivers/nvmem/u-boot-env.c b/drivers/nvmem/u-boot-env.c
index 9b9abfb8f187..d17a164ae705 100644
--- a/drivers/nvmem/u-boot-env.c
+++ b/drivers/nvmem/u-boot-env.c
@@ -92,6 +92,7 @@  static int u_boot_env_add_cells(struct u_boot_env *priv, uint8_t *buf,
 			return -ENOMEM;
 		priv->cells[idx].offset = data_offset + value - data;
 		priv->cells[idx].bytes = strlen(value);
+		priv->cells[idx].np = of_get_child_by_name(dev->of_node, priv->cells[idx].name);
 	}
 
 	if (WARN_ON(idx != priv->ncells))