summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/module.h
blob: 3fd2ce27f4d7226212521208cbf341d050ec6634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-or-later */

/**
 * @file
 * @brief x86 module support
 *
 */

#ifndef _ASM_X86_MODULE_H_
#define _ASM_X86_MODULE_H_

/** currently nothing special */
struct mod_arch_specific
{
        int foo;
};

#define Elf_Shdr        Elf32_Shdr
#define Elf_Ehdr        Elf32_Ehdr

#endif /* _ASM_X86_MODULE_H_ */