[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20141104162054.4CC9BC423D0@trevor.secretlab.ca>
Date: Tue, 04 Nov 2014 16:20:54 +0000
From: Grant Likely <grant.likely@...aro.org>
To: Zhen Lei <thunder.leizhen@...wei.com>,
Rob Herring <robh+dt@...nel.org>,
devicetree <devicetree@...r.kernel.org>,
linux-kernel <linux-kernel@...r.kernel.org>,
Bjorn Helgaas <bhelgaas@...gle.com>
Cc: Zefan Li <lizefan@...wei.com>, Xinwei Hu <huxinwei@...wei.com>,
Kefeng Wang <wangkefeng.wang@...wei.com>,
Zhen Lei <thunder.leizhen@...wei.com>
Subject: Re: [PATCH 1/1] of/fdt: simplify early_init_dt_verify
On Tue, 28 Oct 2014 19:51:05 +0800
, Zhen Lei <thunder.leizhen@...wei.com>
wrote:
> put off initial_boot_params = params; until all checks finished. If any check
> failed, initial_boot_params is equal NULL, base upon bss segment initial value.
>
> Signed-off-by: Zhen Lei <thunder.leizhen@...wei.com>
Interesting. I received exactly the same patch from Bjorn Helgaas. Were
the two of you working together, or is this merely a coincedence?
g.
> ---
> drivers/of/fdt.c | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
> index d1ffca8..325c638 100644
> --- a/drivers/of/fdt.c
> +++ b/drivers/of/fdt.c
> @@ -994,14 +994,12 @@ bool __init early_init_dt_verify(void *params)
> if (!params)
> return false;
>
> - /* Setup flat device-tree pointer */
> - initial_boot_params = params;
> -
> /* check device tree validity */
> - if (fdt_check_header(params)) {
> - initial_boot_params = NULL;
> + if (fdt_check_header(params))
> return false;
> - }
> +
> + /* Setup flat device-tree pointer */
> + initial_boot_params = params;
>
> return true;
> }
> --
> 1.8.0
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists