diff options
author | Borislav Petkov <bp@suse.de> | 2021-02-22 13:34:40 +0100 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-03-15 11:00:57 +0100 |
commit | d30c7b820be5c4777fe6c3b0c21f9d0064251e51 (patch) | |
tree | 6ad20d5b7d1cf8d82ee99f2d700a10572f69224d /tools/arch/x86/lib/insn.c | |
parent | x86/insn: Add @buf_len param to insn_init() kernel-doc comment (diff) | |
download | linux-d30c7b820be5c4777fe6c3b0c21f9d0064251e51.tar.xz linux-d30c7b820be5c4777fe6c3b0c21f9d0064251e51.zip |
x86/insn: Add a __ignore_sync_check__ marker
Add an explicit __ignore_sync_check__ marker which will be used to mark
lines which are supposed to be ignored by file synchronization check
scripts, its advantage being that it explicitly denotes such lines in
the code.
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Masami Hiramatsu <mhiramat@kernel.org>
Link: https://lkml.kernel.org/r/20210304174237.31945-4-bp@alien8.de
Diffstat (limited to 'tools/arch/x86/lib/insn.c')
-rw-r--r-- | tools/arch/x86/lib/insn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/arch/x86/lib/insn.c b/tools/arch/x86/lib/insn.c index 31afbf0a75f7..1174c43b3944 100644 --- a/tools/arch/x86/lib/insn.c +++ b/tools/arch/x86/lib/insn.c @@ -11,10 +11,10 @@ #else #include <string.h> #endif -#include "../include/asm/inat.h" -#include "../include/asm/insn.h" +#include "../include/asm/inat.h" /* __ignore_sync_check__ */ +#include "../include/asm/insn.h" /* __ignore_sync_check__ */ -#include "../include/asm/emulate_prefix.h" +#include "../include/asm/emulate_prefix.h" /* __ignore_sync_check__ */ #define leXX_to_cpu(t, r) \ ({ \ |