Re: [U-Boot] [PATCH v2 2/4] libfdt: return correct value if #size-cells property is not present

2019-09-27 Thread sjg
On 27/09/2019 03:48, Simon Glass wrote: > On Tue, 17 Sep 2019 at 09:52, Simon Glass wrote: >> >> Hi Matthias, >> >> On Tue, 17 Sep 2019 at 00:29, Matthias Brugger wrote: >>> >>> Hi Simon, >>> >>> On 17/09/2019 07:48, Simon Glass wrote: Hi, On Thu, 5 Sep 2019 at 02:49, wrote:

Re: [U-Boot] [PATCH v2 2/4] libfdt: return correct value if #size-cells property is not present

2019-09-27 Thread Matthias Brugger
On 27/09/2019 03:48, Simon Glass wrote: > On Tue, 17 Sep 2019 at 09:52, Simon Glass wrote: >> >> Hi Matthias, >> >> On Tue, 17 Sep 2019 at 00:29, Matthias Brugger wrote: >>> >>> Hi Simon, >>> >>> On 17/09/2019 07:48, Simon Glass wrote: Hi, On Thu, 5 Sep 2019 at 02:49, wrote:

Re: [U-Boot] [PATCH v2 2/4] libfdt: return correct value if #size-cells property is not present

2019-09-26 Thread Simon Glass
On Tue, 17 Sep 2019 at 09:52, Simon Glass wrote: > > Hi Matthias, > > On Tue, 17 Sep 2019 at 00:29, Matthias Brugger wrote: > > > > Hi Simon, > > > > On 17/09/2019 07:48, Simon Glass wrote: > > > Hi, > > > > > > On Thu, 5 Sep 2019 at 02:49, wrote: > > >> > > >> From: Matthias Brugger > > >> >

Re: [U-Boot] [PATCH v2 2/4] libfdt: return correct value if #size-cells property is not present

2019-09-17 Thread Simon Glass
Hi Matthias, On Tue, 17 Sep 2019 at 00:29, Matthias Brugger wrote: > > Hi Simon, > > On 17/09/2019 07:48, Simon Glass wrote: > > Hi, > > > > On Thu, 5 Sep 2019 at 02:49, wrote: > >> > >> From: Matthias Brugger > >> > >> According to the device tree specification, the default value for > >> was

Re: [U-Boot] [PATCH v2 2/4] libfdt: return correct value if #size-cells property is not present

2019-09-17 Thread Matthias Brugger
Hi Simon, On 17/09/2019 07:48, Simon Glass wrote: > Hi, > > On Thu, 5 Sep 2019 at 02:49, wrote: >> >> From: Matthias Brugger >> >> According to the device tree specification, the default value for >> was not present. >> >> This patch also makes fdt_address_cells() and fdt_size_cells() conform

Re: [U-Boot] [PATCH v2 2/4] libfdt: return correct value if #size-cells property is not present

2019-09-16 Thread Simon Glass
Hi, On Thu, 5 Sep 2019 at 02:49, wrote: > > From: Matthias Brugger > > According to the device tree specification, the default value for > was not present. > > This patch also makes fdt_address_cells() and fdt_size_cells() conform > to the behaviour documented in libfdt.h. The defaults are only

[U-Boot] [PATCH v2 2/4] libfdt: return correct value if #size-cells property is not present

2019-09-05 Thread matthias . bgg
From: Matthias Brugger According to the device tree specification, the default value for was not present. This patch also makes fdt_address_cells() and fdt_size_cells() conform to the behaviour documented in libfdt.h. The defaults are only returned if fdt_getprop() returns -FDT_ERR_NOTFOUND,