Re: [PATCH] of: overlay: move resolve phandles into of_overlay_apply()

2017-10-16 Thread Frank Rowand
On 10/16/17 13:46, Rob Herring wrote: > On Tue, Oct 10, 2017 at 8:02 PM, wrote: >> From: Frank Rowand >> >> Move more code into of_overlay_apply() so that it does not have >> to be duplicated by each caller of of_overlay_apply(). >> >> The test in of_resolve_phandles() that the overlay tree is d

Re: [PATCH] of: overlay: move resolve phandles into of_overlay_apply()

2017-10-16 Thread Rob Herring
On Tue, Oct 10, 2017 at 8:02 PM, wrote: > From: Frank Rowand > > Move more code into of_overlay_apply() so that it does not have > to be duplicated by each caller of of_overlay_apply(). > > The test in of_resolve_phandles() that the overlay tree is detached is > temporarily disabled so that old

[PATCH] of: overlay: move resolve phandles into of_overlay_apply()

2017-10-10 Thread frowand . list
From: Frank Rowand Move more code into of_overlay_apply() so that it does not have to be duplicated by each caller of of_overlay_apply(). The test in of_resolve_phandles() that the overlay tree is detached is temporarily disabled so that old style overlay unittests do not fail. Signed-off-by: F