remove libdss from Makefile
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / arch / parisc / include / asm / module.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _ASM_PARISC_MODULE_H
3#define _ASM_PARISC_MODULE_H
786d35d4
DH
4
5#include <asm-generic/module.h>
6
1da177e4
LT
7/*
8 * This file contains the parisc architecture specific module code.
9 */
1da177e4
LT
10
11struct unwind_table;
12
13struct mod_arch_specific
14{
15 unsigned long got_offset, got_count, got_max;
16 unsigned long fdesc_offset, fdesc_count, fdesc_max;
c298be74
HD
17 struct {
18 unsigned long stub_offset;
19 unsigned int stub_entries;
20 } *section;
1da177e4
LT
21 int unwind_section;
22 struct unwind_table *unwind;
23};
24
25#endif /* _ASM_PARISC_MODULE_H */