Re: [PATCH] of: Add missing node iteration stubs for disabled CONFIG_OF

2013-06-11 Thread Tomasz Figa
Hi, On Tuesday 11 of June 2013 22:51:47 Grant Likely wrote: > On Tue, 11 Jun 2013 17:22:55 +0100, Jonathan Austin wrote: > > Hi Rob, Thomasz, > > > > (dredging up an oldish thread as I just ran in to this issue) > > > > On 01/04/13 22:19, Rob Herring wrote: > > > On 03/09/2013 02:15 PM, Tomasz

Re: [PATCH] of: Add missing node iteration stubs for disabled CONFIG_OF

2013-06-11 Thread Grant Likely
On Tue, 11 Jun 2013 17:22:55 +0100, Jonathan Austin wrote: > Hi Rob, Thomasz, > > (dredging up an oldish thread as I just ran in to this issue) > > On 01/04/13 22:19, Rob Herring wrote: > > On 03/09/2013 02:15 PM, Tomasz Figa wrote: > >> This patch moves several for_each macros out of the #ifde

Re: [PATCH] of: Add missing node iteration stubs for disabled CONFIG_OF

2013-04-01 Thread Rob Herring
On 03/09/2013 02:15 PM, Tomasz Figa wrote: > This patch moves several for_each macros out of the #ifdef CONFIG_OF > block and adds inline stubs for functions used by these macros, compiled > conditionally when CONFIG_OF is not enabled. > > This eliminates the need to explicitly check for CONFIG_OF

[PATCH] of: Add missing node iteration stubs for disabled CONFIG_OF

2013-03-09 Thread Tomasz Figa
This patch moves several for_each macros out of the #ifdef CONFIG_OF block and adds inline stubs for functions used by these macros, compiled conditionally when CONFIG_OF is not enabled. This eliminates the need to explicitly check for CONFIG_OF in driver code using mentioned functions and macros.