forked from Minki/linux
fb24e308b6
To bring in the change made in this cset:
5e21a3ecad
("x86/alternative: Merge include files")
This just silences these perf tools build warnings, no change in the tools:
Warning: Kernel ABI header at 'tools/arch/x86/lib/memcpy_64.S' differs from latest version at 'arch/x86/lib/memcpy_64.S'
diff -u tools/arch/x86/lib/memcpy_64.S arch/x86/lib/memcpy_64.S
Warning: Kernel ABI header at 'tools/arch/x86/lib/memset_64.S' differs from latest version at 'arch/x86/lib/memset_64.S'
diff -u tools/arch/x86/lib/memset_64.S arch/x86/lib/memset_64.S
Cc: Borislav Petkov <bp@suse.de>
Cc: Juergen Gross <jgross@suse.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
11 lines
257 B
C
11 lines
257 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _TOOLS_ASM_ALTERNATIVE_ASM_H
|
|
#define _TOOLS_ASM_ALTERNATIVE_ASM_H
|
|
|
|
/* Just disable it so we can build arch/x86/lib/memcpy_64.S for perf bench: */
|
|
|
|
#define altinstruction_entry #
|
|
#define ALTERNATIVE_2 #
|
|
|
|
#endif
|