tree-wide: replace config_enabled() with IS_ENABLED()
[cascardo/linux.git] / arch / mips / include / asm / syscall.h
index 47bc45a..d878825 100644 (file)
@@ -99,7 +99,7 @@ static inline void syscall_get_arguments(struct task_struct *task,
 {
        int ret;
        /* O32 ABI syscall() - Either 64-bit with O32 or 32-bit */
-       if ((config_enabled(CONFIG_32BIT) ||
+       if ((IS_ENABLED(CONFIG_32BIT) ||
            test_tsk_thread_flag(task, TIF_32BIT_REGS)) &&
            (regs->regs[2] == __NR_syscall))
                i++;