diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2025-07-19 23:43:55 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2025-12-08 15:32:15 -0800 |
| commit | 2a5b286bee941c4b8ed359de82398a1a3a19b7db (patch) | |
| tree | cbedf0b9a1129c8f418dcc56f4d0c6a12c8a2ae2 /arch/x86/include/asm/bug.h | |
| parent | add9b1be777d2a4a62933b703de5bb1bd1926e85 (diff) | |
arch/x86: replace "__auto_type" with "auto"
Replace instances of "__auto_type" with "auto" in:
arch/x86/include/asm/bug.h
arch/x86/include/asm/string_64.h
arch/x86/include/asm/uaccess_64.h
Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include/asm/bug.h')
| -rw-r--r-- | arch/x86/include/asm/bug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/bug.h b/arch/x86/include/asm/bug.h index ee23b98353d7..d561a8443c13 100644 --- a/arch/x86/include/asm/bug.h +++ b/arch/x86/include/asm/bug.h @@ -129,7 +129,7 @@ do { \ #define __WARN_FLAGS(cond_str, flags) \ do { \ - __auto_type __flags = BUGFLAG_WARNING|(flags); \ + auto __flags = BUGFLAG_WARNING|(flags); \ instrumentation_begin(); \ _BUG_FLAGS(cond_str, ASM_UD2, __flags, ARCH_WARN_REACHABLE); \ instrumentation_end(); \ |
