License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / tools / perf / util / include / linux / linkage.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #ifndef PERF_LINUX_LINKAGE_H_
4 #define PERF_LINUX_LINKAGE_H_
5
6 /* linkage.h ... for including arch/x86/lib/memcpy_64.S */
7
8 #define ENTRY(name)                             \
9         .globl name;                            \
10         name:
11
12 #define ENDPROC(name)
13
14 #endif  /* PERF_LINUX_LINKAGE_H_ */