module.h 330 B

123456789101112131415161718
  1. #ifndef _ASM_ARM_MODULE_H
  2. #define _ASM_ARM_MODULE_H
  3. struct mod_arch_specific
  4. {
  5. int foo;
  6. };
  7. #define Elf_Shdr Elf32_Shdr
  8. #define Elf_Sym Elf32_Sym
  9. #define Elf_Ehdr Elf32_Ehdr
  10. /*
  11. * Include the ARM architecture version.
  12. */
  13. #define MODULE_ARCH_VERMAGIC "ARMv" __stringify(__LINUX_ARM_ARCH__) " "
  14. #endif /* _ASM_ARM_MODULE_H */