kernel/workqueue.c: remove ifdefs over wq_power_efficient
We can avoid an ifdef over wq_power_efficient's declaration by just using IS_ENABLED(). Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Jani Nikula <jani.nikula@intel.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Kees Cook <keescook@chromium.org> Cc: Tejun Heo <tj@kernel.org> Cc: Ingo Molnar <mingo@kernel.org> Cc: linux-kernel@vger.kernel.org Cc: cocci@systeme.lip6.fr Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: mydongistiny <jaysonedson@gmail.com> Signed-off-by: Eliminater74 <eliminater74@gmail.com> (cherry picked from commit 6de9b44a13409c30e13a7948be108b16501db39b)
This commit is contained in:
parent
aa20804a39
commit
ed46de5321
1 changed files with 1 additions and 5 deletions
|
@ -289,11 +289,7 @@ static bool wq_disable_numa;
|
|||
module_param_named(disable_numa, wq_disable_numa, bool, 0444);
|
||||
|
||||
/* see the comment above the definition of WQ_POWER_EFFICIENT */
|
||||
#ifdef CONFIG_WQ_POWER_EFFICIENT_DEFAULT
|
||||
static bool wq_power_efficient = true;
|
||||
#else
|
||||
static bool wq_power_efficient;
|
||||
#endif
|
||||
static bool wq_power_efficient = IS_ENABLED(CONFIG_WQ_POWER_EFFICIENT_DEFAULT);
|
||||
|
||||
module_param_named(power_efficient, wq_power_efficient, bool, 0644);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue