Re: [PATCH] ARM: imx: use IS_ENABLED() instead of checking for built-in or module

2016-09-07 Thread Javier Martinez Canillas
Hello Uwe, Thanks for your feedback. On 09/06/2016 08:42 AM, Uwe Kleine-König wrote: > Hello Javier, > > On Mon, Aug 29, 2016 at 11:32:11AM +0200, Javier Martinez Canillas wrote: >> From: Javier Martinez Canillas >> >> The IS_ENABLED() macro checks if a Kconfig symbol has been enabled either >>

Re: [PATCH] ARM: imx: use IS_ENABLED() instead of checking for built-in or module

2016-09-05 Thread Uwe Kleine-König
Hello Javier, On Mon, Aug 29, 2016 at 11:32:11AM +0200, Javier Martinez Canillas wrote: > From: Javier Martinez Canillas > > The IS_ENABLED() macro checks if a Kconfig symbol has been enabled either > built-in or as a module, use that macro instead of open coding the same. > > Using the macro m

[PATCH] ARM: imx: use IS_ENABLED() instead of checking for built-in or module

2016-08-29 Thread Javier Martinez Canillas
From: Javier Martinez Canillas The IS_ENABLED() macro checks if a Kconfig symbol has been enabled either built-in or as a module, use that macro instead of open coding the same. Using the macro makes the code more readable by helping abstract away some of the Kconfig built-in and module enable d