xref: /linux-6.15/tools/include/linux/linkage.h (revision e08ec269)
1e58e871bSLevin, Alexander (Sasha Levin) #ifndef _TOOLS_INCLUDE_LINUX_LINKAGE_H
2e58e871bSLevin, Alexander (Sasha Levin) #define _TOOLS_INCLUDE_LINUX_LINKAGE_H
3e58e871bSLevin, Alexander (Sasha Levin) 
4f8d92fc5SChristophe Leroy #include <linux/export.h>
5f8d92fc5SChristophe Leroy 
6*e08ec269SHeiko Carstens #define SYM_FUNC_START(x) .globl x; x:
7*e08ec269SHeiko Carstens #define SYM_FUNC_END(x)
8*e08ec269SHeiko Carstens #define SYM_DATA_START(x) .globl x; x:
9f8d92fc5SChristophe Leroy #define SYM_DATA_START_LOCAL(x) x:
10e58e871bSLevin, Alexander (Sasha Levin) #define SYM_DATA_END(x)
11 
12 #endif /* _TOOLS_INCLUDE_LINUX_LINKAGE_H */
13