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


Groups > linux.kernel > #1708017

Re: [PATCH] nvmem: Convert to using %pOF instead of full_name

From Rob Herring <robh@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH] nvmem: Convert to using %pOF instead of full_name
Date 2017-08-10 00:20 +0200
Message-ID <ucHuy-4Z3-13@gated-at.bofh.it> (permalink)
References <u4Ixr-7K6-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Jul 18, 2017 at 4:43 PM, Rob Herring <robh@kernel.org> wrote:
> Now that we have a custom printf format specifier, convert users of
> full_name to use %pOF instead. This is preparation to remove storing
> of the full path string for each node.
>
> Signed-off-by: Rob Herring <robh@kernel.org>
> Cc: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> ---
>  drivers/nvmem/core.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Ping?

>
> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
> index 4c49285168fb..b0c60338296a 100644
> --- a/drivers/nvmem/core.c
> +++ b/drivers/nvmem/core.c
> @@ -794,8 +794,8 @@ struct nvmem_cell *of_nvmem_cell_get(struct device_node *np,
>
>         addr = of_get_property(cell_np, "reg", &len);
>         if (!addr || (len < 2 * sizeof(u32))) {
> -               dev_err(&nvmem->dev, "nvmem: invalid reg on %s\n",
> -                       cell_np->full_name);
> +               dev_err(&nvmem->dev, "nvmem: invalid reg on %pOF\n",
> +                       cell_np);
>                 rval  = -EINVAL;
>                 goto err_mem;
>         }
> --
> 2.11.0
>

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


Thread

Re: [PATCH] nvmem: Convert to using %pOF instead of full_name Rob Herring <robh@kernel.org> - 2017-08-10 00:20 +0200
  Re: [PATCH] nvmem: Convert to using %pOF instead of full_name Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2017-08-10 11:00 +0200

csiph-web