Re: [U-Boot] [PATCH 1/2] dtoc: Move the output code into its own function

2017-05-02 Thread sjg
Hi Simon, On 04/23/2017 08:42 AM, Simon Glass wrote: > The code to generate the tables is quite long. Move the node-output code > into its own function. > > Signed-off-by: Simon Glass > --- > > tools/dtoc/dtoc.py | 96 > +- > 1 file changed

Re: [U-Boot] [PATCH 1/2] dtoc: Move the output code into its own function

2017-04-23 Thread Kever Yang
Hi Simon, On 04/23/2017 08:42 AM, Simon Glass wrote: The code to generate the tables is quite long. Move the node-output code into its own function. Signed-off-by: Simon Glass --- tools/dtoc/dtoc.py | 96 +- 1 file changed, 52 insertions

[U-Boot] [PATCH 1/2] dtoc: Move the output code into its own function

2017-04-22 Thread Simon Glass
The code to generate the tables is quite long. Move the node-output code into its own function. Signed-off-by: Simon Glass --- tools/dtoc/dtoc.py | 96 +- 1 file changed, 52 insertions(+), 44 deletions(-) diff --git a/tools/dtoc/dtoc.py b/too