Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASM_PARISC_MODULE_H |
| 2 | #define _ASM_PARISC_MODULE_H |
David Howells | 786d35d | 2012-09-28 14:31:03 +0930 | [diff] [blame] | 3 | |
| 4 | #include <asm-generic/module.h> |
| 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | /* |
| 7 | * This file contains the parisc architecture specific module code. |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | struct unwind_table; |
| 11 | |
| 12 | struct mod_arch_specific |
| 13 | { |
| 14 | unsigned long got_offset, got_count, got_max; |
| 15 | unsigned long fdesc_offset, fdesc_count, fdesc_max; |
Helge Deller | c298be7 | 2009-01-01 22:25:30 +0100 | [diff] [blame] | 16 | struct { |
| 17 | unsigned long stub_offset; |
| 18 | unsigned int stub_entries; |
| 19 | } *section; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | int unwind_section; |
| 21 | struct unwind_table *unwind; |
| 22 | }; |
| 23 | |
| 24 | #endif /* _ASM_PARISC_MODULE_H */ |