blob: e988bac0a4a1c316fffac9525b2a094cde9b2a51 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_X86_MODULE_H
3#define _ASM_X86_MODULE_H
4
5#include <asm-generic/module.h>
6#include <asm/orc_types.h>
7
8struct mod_arch_specific {
9#ifdef CONFIG_UNWINDER_ORC
10 unsigned int num_orcs;
11 int *orc_unwind_ip;
12 struct orc_entry *orc_unwind;
13#endif
14};
15
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016#endif /* _ASM_X86_MODULE_H */