Re: [U-Boot] [PATCH] dm: remove pre reloc properties in SPL and TPL device tree

2019-03-30 Thread Simon Glass
Hi Patrick, On Wed, 20 Mar 2019 at 11:24, Patrick DELAUNAY wrote: > > Hi Simon, > > > From: Simon Glass > > Sent: mardi 19 mars 2019 02:25 > > > > Hi Patrick, > > > > On Mon, 11 Feb 2019 at 19:50, Patrick Delaunay > > wrote: > > > > > > We can remove the pre reloc property in SPL and TPL

Re: [U-Boot] [PATCH] dm: remove pre reloc properties in SPL and TPL device tree

2019-03-20 Thread Patrick DELAUNAY
Hi Simon, > From: Simon Glass > Sent: mardi 19 mars 2019 02:25 > > Hi Patrick, > > On Mon, 11 Feb 2019 at 19:50, Patrick Delaunay > wrote: > > > > We can remove the pre reloc property in SPL and TPL device-tree: > > - u-boot,dm-pre-reloc > > - u-boot,dm-spl > > - u-boot,dm-tpl > > As only the

Re: [U-Boot] [PATCH] dm: remove pre reloc properties in SPL and TPL device tree

2019-03-18 Thread Simon Glass
Hi Patrick, On Mon, 11 Feb 2019 at 19:50, Patrick Delaunay wrote: > > We can remove the pre reloc property in SPL and TPL device-tree: > - u-boot,dm-pre-reloc > - u-boot,dm-spl > - u-boot,dm-tpl > As only the needed node are kept by fdtgrep (1st pass). > > The associated function (XXX_pre_reloc)

[U-Boot] [PATCH] dm: remove pre reloc properties in SPL and TPL device tree

2019-02-11 Thread Patrick Delaunay
We can remove the pre reloc property in SPL and TPL device-tree: - u-boot,dm-pre-reloc - u-boot,dm-spl - u-boot,dm-tpl As only the needed node are kept by fdtgrep (1st pass). The associated function (XXX_pre_reloc) are simple for SPL/TPL: return always true. Signed-off-by: Patrick Delaunay ---