From: ndesaulniers@google.com Date: Wed, 31 Oct 2018 19:39:01 +0000 (-0700) Subject: include/linux/compiler*.h: define asm_volatile_goto X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=8bd66d147c88bd441178c7b4c774ae5a185f19b8;p=openwrt%2Fstaging%2Fblogic.git include/linux/compiler*.h: define asm_volatile_goto asm_volatile_goto should also be defined for other compilers that support asm goto. Fixes commit 815f0ddb346c ("include/linux/compiler*.h: make compiler-*.h mutually exclusive"). Signed-off-by: Nick Desaulniers Signed-off-by: Miguel Ojeda --- diff --git a/include/linux/compiler_types.h b/include/linux/compiler_types.h index 3439d7d0249a..4a3f9c09c92d 100644 --- a/include/linux/compiler_types.h +++ b/include/linux/compiler_types.h @@ -130,6 +130,10 @@ struct ftrace_likely_data { # define randomized_struct_fields_end #endif +#ifndef asm_volatile_goto +#define asm_volatile_goto(x...) asm goto(x) +#endif + /* Are two types/vars the same type (ignoring qualifiers)? */ #define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))