tree-wide: replace config_enabled() with IS_ENABLED()
[linux-block.git] / arch / mips / include / asm / seccomp.h
index 684fb3a12ed364549fb4fdfe81b75f2ebccd7ecf..d886d6f7687a5a73133b7ff1b9847b5b80afb124 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();