module.h 410 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2004-2008 Analog Devices Inc.
  3. *
  4. * Licensed under the GPL-2 or later.
  5. */
  6. #ifndef _ASM_BFIN_MODULE_H
  7. #define _ASM_BFIN_MODULE_H
  8. #include <asm-generic/module.h>
  9. struct mod_arch_specific {
  10. Elf_Shdr *text_l1;
  11. Elf_Shdr *data_a_l1;
  12. Elf_Shdr *bss_a_l1;
  13. Elf_Shdr *data_b_l1;
  14. Elf_Shdr *bss_b_l1;
  15. Elf_Shdr *text_l2;
  16. Elf_Shdr *data_l2;
  17. Elf_Shdr *bss_l2;
  18. };
  19. #endif /* _ASM_BFIN_MODULE_H */