Re: [U-Boot] [PATCH] dm: core: make fixed-clock dt scan live dt compatible

2018-04-01 Thread Simon Glass
On 20 March 2018 at 08:56, Andy Yan wrote: > Hi Simon: > > > > On 2018年03月20日 01:58, Simon Glass wrote: >> >> Hi Andy, >> >> On 10 March 2018 at 23:58, Andy Yan wrote: >>> >>> Hi Simon: >>> >>> >>> >>> On 2018年03月09日 05:03, Simon Glass wrote: Hi Andy. On 28 February 2018 at 23

Re: [U-Boot] [PATCH] dm: core: make fixed-clock dt scan live dt compatible

2018-03-19 Thread Andy Yan
Hi Simon: On 2018年03月20日 01:58, Simon Glass wrote: Hi Andy, On 10 March 2018 at 23:58, Andy Yan wrote: Hi Simon: On 2018年03月09日 05:03, Simon Glass wrote: Hi Andy. On 28 February 2018 at 23:08, Andy Yan wrote: dm_scan_fdt_node can't work when live dt is active, we should use dm_scan_fd

Re: [U-Boot] [PATCH] dm: core: make fixed-clock dt scan live dt compatible

2018-03-19 Thread Simon Glass
Hi Andy, On 10 March 2018 at 23:58, Andy Yan wrote: > > Hi Simon: > > > > On 2018年03月09日 05:03, Simon Glass wrote: >> >> Hi Andy. >> >> On 28 February 2018 at 23:08, Andy Yan wrote: >>> >>> dm_scan_fdt_node can't work when live dt is active, >>> we should use dm_scan_fdt_live instead. >>> >>> Si

Re: [U-Boot] [PATCH] dm: core: make fixed-clock dt scan live dt compatible

2018-03-10 Thread Andy Yan
Hi Simon: On 2018年03月09日 05:03, Simon Glass wrote: Hi Andy. On 28 February 2018 at 23:08, Andy Yan wrote: dm_scan_fdt_node can't work when live dt is active, we should use dm_scan_fdt_live instead. Signed-off-by: Andy Yan --- drivers/core/root.c | 16 +++- 1 file changed, 1

Re: [U-Boot] [PATCH] dm: core: make fixed-clock dt scan live dt compatible

2018-03-08 Thread Simon Glass
Hi Andy. On 28 February 2018 at 23:08, Andy Yan wrote: > dm_scan_fdt_node can't work when live dt is active, > we should use dm_scan_fdt_live instead. > > Signed-off-by: Andy Yan > --- > > drivers/core/root.c | 16 +++- > 1 file changed, 11 insertions(+), 5 deletions(-) > Reviewed-

[U-Boot] [PATCH] dm: core: make fixed-clock dt scan live dt compatible

2018-02-28 Thread Andy Yan
dm_scan_fdt_node can't work when live dt is active, we should use dm_scan_fdt_live instead. Signed-off-by: Andy Yan --- drivers/core/root.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/drivers/core/root.c b/drivers/core/root.c index 36336b6..b437892 1006