Re: [PATCH 1/2] lib: Fix BINMAN_FDT dependency

2021-02-06 Thread Simon Glass
On Wed, 3 Feb 2021 at 06:20, Bin Meng wrote: > > lib/binman.c references the following 3 ofnode APIs: > ofnode_first_subnode(), ofnode_path() and ofnode_read_bool(). > > These APIs get built only when DM is on. Fix the dependency then. > > Signed-off-by: Bin Meng > --- > > lib/Kconfig | 2 +- >

Re: [PATCH 1/2] lib: Fix BINMAN_FDT dependency

2021-02-03 Thread Simon Glass
On Wed, 3 Feb 2021 at 06:20, Bin Meng wrote: > > lib/binman.c references the following 3 ofnode APIs: > ofnode_first_subnode(), ofnode_path() and ofnode_read_bool(). > > These APIs get built only when DM is on. Fix the dependency then. > > Signed-off-by: Bin Meng > --- > > lib/Kconfig | 2 +- >

[PATCH 1/2] lib: Fix BINMAN_FDT dependency

2021-02-03 Thread Bin Meng
lib/binman.c references the following 3 ofnode APIs: ofnode_first_subnode(), ofnode_path() and ofnode_read_bool(). These APIs get built only when DM is on. Fix the dependency then. Signed-off-by: Bin Meng --- lib/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/K