module.h 527 B

1234567891011121314151617181920212223242526
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_PARISC_MODULE_H
  3. #define _ASM_PARISC_MODULE_H
  4. #include <asm-generic/module.h>
  5. /*
  6. * This file contains the parisc architecture specific module code.
  7. */
  8. struct unwind_table;
  9. struct mod_arch_specific
  10. {
  11. unsigned long got_offset, got_count, got_max;
  12. unsigned long fdesc_offset, fdesc_count, fdesc_max;
  13. struct {
  14. unsigned long stub_offset;
  15. unsigned int stub_entries;
  16. } *section;
  17. int unwind_section;
  18. struct unwind_table *unwind;
  19. };
  20. #endif /* _ASM_PARISC_MODULE_H */