Re: [U-Boot] [PATCH] libfdt: use CONFIG_IS_ENABLED for OF_LIBFDT

2017-03-19 Thread Vignesh R
On Saturday 18 March 2017 12:16 AM, Simon Glass wrote: > Hi, > > On 13 February 2017 at 01:08, Lokesh Vutla wrote: >> >> >> On Monday 13 February 2017 01:04 PM, Vignesh R wrote: >>> Use CONFIG_IS_ENABLED() macro to check whether OF_LIBFDT is enabled, so >>> that code block is compiled irrespect

Re: [U-Boot] [PATCH] libfdt: use CONFIG_IS_ENABLED for OF_LIBFDT

2017-03-17 Thread Tom Rini
On Fri, Mar 17, 2017 at 12:46:17PM -0600, Simon Glass wrote: > Hi, > > On 13 February 2017 at 01:08, Lokesh Vutla wrote: > > > > > > On Monday 13 February 2017 01:04 PM, Vignesh R wrote: > >> Use CONFIG_IS_ENABLED() macro to check whether OF_LIBFDT is enabled, so > >> that code block is compiled

Re: [U-Boot] [PATCH] libfdt: use CONFIG_IS_ENABLED for OF_LIBFDT

2017-03-17 Thread Simon Glass
Hi, On 13 February 2017 at 01:08, Lokesh Vutla wrote: > > > On Monday 13 February 2017 01:04 PM, Vignesh R wrote: >> Use CONFIG_IS_ENABLED() macro to check whether OF_LIBFDT is enabled, so >> that code block is compiled irrespective of SPL or U-Boot build >> depending on CONFIG_SPL_OF_LIBFDT(for

Re: [U-Boot] [PATCH] libfdt: use CONFIG_IS_ENABLED for OF_LIBFDT

2017-02-13 Thread Lokesh Vutla
On Monday 13 February 2017 01:04 PM, Vignesh R wrote: > Use CONFIG_IS_ENABLED() macro to check whether OF_LIBFDT is enabled, so > that code block is compiled irrespective of SPL or U-Boot build > depending on CONFIG_SPL_OF_LIBFDT(for SPL) or CONFIG_OF_LIBFDT(for > U-Boot). > > Signed-off-by: Vig

Re: [U-Boot] [PATCH] libfdt: use CONFIG_IS_ENABLED for OF_LIBFDT

2017-02-12 Thread Masahiro Yamada
2017-02-13 16:34 GMT+09:00 Vignesh R : > Use CONFIG_IS_ENABLED() macro to check whether OF_LIBFDT is enabled, so > that code block is compiled irrespective of SPL or U-Boot build > depending on CONFIG_SPL_OF_LIBFDT(for SPL) or CONFIG_OF_LIBFDT(for > U-Boot). > > Signed-off-by: Vignesh R Reviewed

[U-Boot] [PATCH] libfdt: use CONFIG_IS_ENABLED for OF_LIBFDT

2017-02-12 Thread Vignesh R
Use CONFIG_IS_ENABLED() macro to check whether OF_LIBFDT is enabled, so that code block is compiled irrespective of SPL or U-Boot build depending on CONFIG_SPL_OF_LIBFDT(for SPL) or CONFIG_OF_LIBFDT(for U-Boot). Signed-off-by: Vignesh R --- lib/fdtdec.c | 2 +- 1 file changed, 1 insertion(+), 1