Re: [PATCH] libfdt: Remove superfluous NUL character from overlay symbols

2020-05-24 Thread Simon Glass
On Sat, 23 May 2020 at 09:13, Marcus Comstedt wrote: > > > Hi Simon, > > Simon Glass writes: > > > You can send your patch to the mailing list on cc. > > > > Also see README.fdt-control fo the the git repo and other details. > > > Thanks. Sent. > > > // Marcus > > Reviewed-by: Simon Glass

Re: [PATCH] libfdt: Remove superfluous NUL character from overlay symbols

2020-05-23 Thread Marcus Comstedt
Hi Simon, Simon Glass writes: > You can send your patch to the mailing list on cc. > > Also see README.fdt-control fo the the git repo and other details. Thanks. Sent. // Marcus

Re: [PATCH] libfdt: Remove superfluous NUL character from overlay symbols

2020-05-23 Thread Simon Glass
+Devicetree Compiler On Sat, 23 May 2020 at 05:57, Marcus Comstedt wrote: > > > Hi Simon, > > > Simon Glass writes: > > > Could you please send this patch upstream? > > > Sure. But where is that, exactly? > > > // Marcus > > Hi Marcus, You can send your patch to the mailing list on cc. Als

Re: [PATCH] libfdt: Remove superfluous NUL character from overlay symbols

2020-05-23 Thread Marcus Comstedt
Hi Simon, Simon Glass writes: > Could you please send this patch upstream? Sure. But where is that, exactly? // Marcus

Re: [PATCH] libfdt: Remove superfluous NUL character from overlay symbols

2020-05-22 Thread Simon Glass
Hi Marcus, On Fri, 22 May 2020 at 10:42, Marcus Comstedt wrote: > > The symbol path already ends with a NUL character (something which is > actually checked by the code) and this NUL is included in > rel_path_len, so there is no need to add a second one. > > This change fixes incorrect display in

[PATCH] libfdt: Remove superfluous NUL character from overlay symbols

2020-05-22 Thread Marcus Comstedt
The symbol path already ends with a NUL character (something which is actually checked by the code) and this NUL is included in rel_path_len, so there is no need to add a second one. This change fixes incorrect display in "fdt list /__symbols" after applying an overlay with symbols. Signed-off-by