else
printk("BE ");
-#ifdef CONFIG_PREEMPT
- pr_cont("PREEMPT ");
-#endif
-#ifdef CONFIG_SMP
- pr_cont("SMP NR_CPUS=%d ", NR_CPUS);
-#endif
+ if (IS_ENABLED(CONFIG_PREEMPT))
+ pr_cont("PREEMPT ");
+
+ if (IS_ENABLED(CONFIG_SMP))
+ pr_cont("SMP NR_CPUS=%d ", NR_CPUS);
+
if (debug_pagealloc_enabled())
pr_cont("DEBUG_PAGEALLOC ");
-#ifdef CONFIG_NUMA
- pr_cont("NUMA ");
-#endif
+
+ if (IS_ENABLED(CONFIG_NUMA))
+ pr_cont("NUMA ");
+
pr_cont("%s\n", ppc_md.name ? ppc_md.name : "");
if (notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV) == NOTIFY_STOP)