Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / x86 / um / asm / module.h
bloba3b061d66082ba88e76fa22033af8e6df1041b9a
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __UM_MODULE_H
3 #define __UM_MODULE_H
5 /* UML is simple */
6 struct mod_arch_specific
8 };
10 #ifdef CONFIG_X86_32
12 #define Elf_Shdr Elf32_Shdr
13 #define Elf_Sym Elf32_Sym
14 #define Elf_Ehdr Elf32_Ehdr
16 #else
18 #define Elf_Shdr Elf64_Shdr
19 #define Elf_Sym Elf64_Sym
20 #define Elf_Ehdr Elf64_Ehdr
22 #endif
24 #endif