License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / score / include / asm / module.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
6bc9a396
CL
2#ifndef _ASM_SCORE_MODULE_H
3#define _ASM_SCORE_MODULE_H
4
5#include <linux/list.h>
88dd4a74 6#include <asm/extable.h>
786d35d4 7#include <asm-generic/module.h>
6bc9a396
CL
8
9struct mod_arch_specific {
10 /* Data Bus Error exception tables */
11 struct list_head dbe_list;
12 const struct exception_table_entry *dbe_start;
13 const struct exception_table_entry *dbe_end;
14};
15
16typedef uint8_t Elf64_Byte; /* Type for a 8-bit quantity. */
17
6bc9a396
CL
18/* Given an address, look for it in the exception tables. */
19#ifdef CONFIG_MODULES
20const struct exception_table_entry *search_module_dbetables(unsigned long addr);
21#else
22static inline const struct exception_table_entry
23*search_module_dbetables(unsigned long addr)
24{
25 return NULL;
26}
27#endif
28
29#define MODULE_PROC_FAMILY "SCORE7"
30#define MODULE_KERNEL_TYPE "32BIT "
31#define MODULE_KERNEL_SMTC ""
32
33#define MODULE_ARCH_VERMAGIC \
34 MODULE_PROC_FAMILY MODULE_KERNEL_TYPE MODULE_KERNEL_SMTC
35
36#endif /* _ASM_SCORE_MODULE_H */