module.h 439 B

1234567891011121314151617181920
  1. #ifndef __ASM_SH64_MODULE_H
  2. #define __ASM_SH64_MODULE_H
  3. /*
  4. * This file contains the SH architecture specific module code.
  5. */
  6. struct mod_arch_specific {
  7. /* empty */
  8. };
  9. #define Elf_Shdr Elf32_Shdr
  10. #define Elf_Sym Elf32_Sym
  11. #define Elf_Ehdr Elf32_Ehdr
  12. #define module_map(x) vmalloc(x)
  13. #define module_unmap(x) vfree(x)
  14. #define module_arch_init(x) (0)
  15. #define arch_init_modules(x) do { } while (0)
  16. #endif /* __ASM_SH64_MODULE_H */