Re: [PATCH 0/8] net: use IS_ENABLED() instead of checking for built-in or module

2016-09-10 Thread David Miller
From: Javier Martinez Canillas Date: Fri, 9 Sep 2016 08:43:12 -0400 > This trivial series replace the open coding to check for a Kconfig symbol > being built-in or module, with IS_ENABLED() macro that does exactly that. > > Using the macro makes the code more readable by helping abstract away s

[PATCH 0/8] net: use IS_ENABLED() instead of checking for built-in or module

2016-09-09 Thread Javier Martinez Canillas
Hello David, This trivial series replace the open coding to check for a Kconfig symbol being built-in or module, with IS_ENABLED() macro that does exactly that. Using the macro makes the code more readable by helping abstract away some of the Kconfig built-in and module enable details. Best rega