From f3c4de1443226565eac937884be620ff3811397d Mon Sep 17 00:00:00 2001 From: zhaoxinchao Date: Thu, 9 Sep 2021 00:44:39 -0700 Subject: [PATCH] x86/uaccess: fix the unused macro definition CONFIG_CC_ASM_GOTO_OUTPUT this macro has been rebplaced by CONFIG_CC_HAS_ASM_GOTO_OUTPUT modify this comments to prevent ambiguity Signed-off-by: zhaoxinchao --- arch/x86/include/asm/uaccess.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/include/asm/uaccess.h b/arch/x86/include/asm/uaccess.h index c9fa7be3df82..e7fc2c515e08 100644 --- a/arch/x86/include/asm/uaccess.h +++ b/arch/x86/include/asm/uaccess.h @@ -411,7 +411,7 @@ do { \ : [umem] "m" (__m(addr)), \ [efault] "i" (-EFAULT), "0" (err)) -#endif // CONFIG_CC_ASM_GOTO_OUTPUT +#endif // CONFIG_CC_HAS_ASM_GOTO_OUTPUT /* FIXME: this hack is definitely wrong -AK */ struct __large_struct { unsigned long buf[100]; }; -- 2.17.1