tree-wide: replace config_enabled() with IS_ENABLED()
[cascardo/linux.git] / arch / mips / include / asm / seccomp.h
index 684fb3a..d886d6f 100644 (file)
@@ -16,10 +16,10 @@ static inline const int *get_compat_mode1_syscalls(void)
                0, /* null terminated */
        };
 
-       if (config_enabled(CONFIG_MIPS32_O32) && test_thread_flag(TIF_32BIT_REGS))
+       if (IS_ENABLED(CONFIG_MIPS32_O32) && test_thread_flag(TIF_32BIT_REGS))
                return syscalls_O32;
 
-       if (config_enabled(CONFIG_MIPS32_N32))
+       if (IS_ENABLED(CONFIG_MIPS32_N32))
                return syscalls_N32;
 
        BUG();